[FFmpeg-cvslog] Fix format string vulnerability detected by -Wformat-security.

Fabian Greffrath git at videolan.org
Tue Mar 6 06:15:55 CET 2012


ffmpeg | branch: master | Fabian Greffrath <fabian at greffrath.com> | Mon Mar  5 16:06:01 2012 +0100| [c9dbac36ad4bac07f6c1d06d465e361ab55bcb95] | committer: Diego Biurrun

Fix format string vulnerability detected by -Wformat-security.

Signed-off-by: Diego Biurrun <diego at biurrun.de>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c9dbac36ad4bac07f6c1d06d465e361ab55bcb95
---

 libavcodec/srtdec.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavcodec/srtdec.c b/libavcodec/srtdec.c
index 677c550..99cbd94 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,



More information about the ffmpeg-cvslog mailing list