[FFmpeg-devel] [PATCH 1/7] segment: fix null pointer dereference

Paul B Mahol onemda at gmail.com
Thu Mar 22 04:36:25 CET 2012


Signed-off-by: Paul B Mahol <onemda at gmail.com>
---
 libavformat/segment.c |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/libavformat/segment.c b/libavformat/segment.c
index 1af412a..05f76a7 100644
--- a/libavformat/segment.c
+++ b/libavformat/segment.c
@@ -174,11 +174,13 @@ static int seg_write_header(AVFormatContext *s)
 
 fail:
     if (ret) {
-        oc->streams = NULL;
-        oc->nb_streams = 0;
+        if (oc) {
+            oc->streams = NULL;
+            oc->nb_streams = 0;
+            avformat_free_context(oc);
+        }
         if (seg->list)
             avio_close(seg->pb);
-        avformat_free_context(oc);
     }
     return ret;
 }
-- 
1.7.7



More information about the ffmpeg-devel mailing list