diff options
author | Fabian Greffrath <fabian@greffrath.com> | 2012-03-03 02:35:27 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-03-16 06:29:10 +0100 |
commit | c91a14638e4e3ea8652ecbedb3228b5a5d4c019f (patch) | |
tree | 00971fb89890a1231ba49248ffb04a524d5e4998 /libavcodec | |
parent | c00c3807243704e2f7a309143305af85837946de (diff) | |
download | ffmpeg-c91a14638e4e3ea8652ecbedb3228b5a5d4c019f.tar.gz |
srtdec: fix a format string vulnerability.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit aaa1173de775b9b865a714abcc270816d2f59dff)
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/srtdec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/srtdec.c b/libavcodec/srtdec.c index aa73f4c7bf..b6f2dade0c 100644 --- a/libavcodec/srtdec.c +++ b/libavcodec/srtdec.c @@ -110,7 +110,7 @@ static const char *srt_to_ass(AVCodecContext *avctx, char *out, char *out_end, for (j=sptr-2; j>=0; j--) if (stack[j].param[i][0]) { out += snprintf(out, out_end-out, - stack[j].param[i]); + "%s", stack[j].param[i]); break; } } else { @@ -146,7 +146,7 @@ static const char *srt_to_ass(AVCodecContext *avctx, char *out, char *out_end, for (i=0; i<PARAM_NUMBER; i++) if (stack[sptr].param[i][0]) out += snprintf(out, out_end-out, - stack[sptr].param[i]); + "%s", stack[sptr].param[i]); } } else if (!buffer[1] && strspn(buffer, "bisu") == 1) { out += snprintf(out, out_end-out, |