From f0615557e03518b2fdc6d036ba29031a90646011 Mon Sep 17 00:00:00 2001 From: Martin Storsjö Date: Mon, 5 Nov 2012 11:13:33 +0200 Subject: rtmpproto: Use av_strlcat instead of strncat Signed-off-by: Michael Niedermayer Fixes: [FFmpeg-devel] rtmpproto compile error Similar patch: [FFmpeg-devel] [PATCH] call to strncat replaced with av_strlcat to avoid compile issue with systems implementing strncat via strcat. --- libavformat/rtmpproto.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/rtmpproto.c') diff --git a/libavformat/rtmpproto.c b/libavformat/rtmpproto.c index 1d00cbb43f..72462cf703 100644 --- a/libavformat/rtmpproto.c +++ b/libavformat/rtmpproto.c @@ -2185,7 +2185,7 @@ static int rtmp_open(URLContext *s, const char *uri, int flags) } else { rt->playpath[0] = 0; } - strncat(rt->playpath, fname, PLAYPATH_MAX_LENGTH - 5); + av_strlcat(rt->playpath, fname, PLAYPATH_MAX_LENGTH); } if (!rt->tcurl) { -- cgit v1.2.3