[FFmpeg-cvslog] avformat/nutdec: Fix use of uinitialized value

Michael Niedermayer git at videolan.org
Tue May 12 18:53:58 CEST 2015


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Tue May 12 18:20:23 2015 +0200| [56abf35151c635caa3eb04bbb90454bae5463a09] | committer: Michael Niedermayer

avformat/nutdec: Fix use of uinitialized value

Fixes CID1041175

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

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

 libavformat/nutdec.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/libavformat/nutdec.c b/libavformat/nutdec.c
index 467dc5b..9c017e0 100644
--- a/libavformat/nutdec.c
+++ b/libavformat/nutdec.c
@@ -524,6 +524,8 @@ static int decode_info_header(NUTContext *nut)
     for (i = 0; i < count; i++) {
         get_str(bc, name, sizeof(name));
         value = get_s(bc);
+        str_value[0] = 0;
+
         if (value == -1) {
             type = "UTF-8";
             get_str(bc, str_value, sizeof(str_value));



More information about the ffmpeg-cvslog mailing list