OSDN Git Service

riff: Fix freeing of random value.
authorMichael Niedermayer <michaelni@gmx.at>
Wed, 14 Dec 2011 20:23:03 +0000 (21:23 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Wed, 14 Dec 2011 20:26:47 +0000 (21:26 +0100)
Fixes Ticket752
Bug-found-by: Diana Elena Muscalu
libavformat/riff.c

index 8c4d797..ea598d2 100644 (file)
@@ -715,8 +715,7 @@ int ff_read_riff_info(AVFormatContext *s, int64_t size)
         AV_WL32(key, chunk_code);
 
         if (avio_read(pb, value, chunk_size) != chunk_size) {
-            av_freep(key);
-            av_freep(value);
+            av_freep(&value);
             av_log(s, AV_LOG_ERROR, "premature end of file while reading INFO tag\n");
             return AVERROR_INVALIDDATA;
         }