From d7cb5a8daf73825d4ffa623be4c2b798c81f41a5 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 9 Sep 2012 14:11:03 +0200 Subject: ffmpeg_filter: fix unsafe snprintf() usage Signed-off-by: Michael Niedermayer --- ffmpeg_filter.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'ffmpeg_filter.c') diff --git a/ffmpeg_filter.c b/ffmpeg_filter.c index b7f20cc218..1887ffec4e 100644 --- a/ffmpeg_filter.c +++ b/ffmpeg_filter.c @@ -424,18 +424,17 @@ static int configure_output_audio_filter(FilterGraph *fg, OutputFilter *ofilter, if (sample_fmts || sample_rates || channel_layouts) { AVFilterContext *format; char args[256]; - int len = 0; + args[0] = 0; if (sample_fmts) - len += snprintf(args + len, sizeof(args) - len, "sample_fmts=%s:", + av_strlcatf(args, sizeof(args), "sample_fmts=%s:", sample_fmts); if (sample_rates) - len += snprintf(args + len, sizeof(args) - len, "sample_rates=%s:", + av_strlcatf(args, sizeof(args), "sample_rates=%s:", sample_rates); if (channel_layouts) - len += snprintf(args + len, sizeof(args) - len, "channel_layouts=%s:", + av_strlcatf(args, sizeof(args), "channel_layouts=%s:", channel_layouts); - args[len - 1] = 0; av_freep(&sample_fmts); av_freep(&sample_rates); -- cgit v1.2.3