diff mbox

[FFmpeg-devel,v1,10/11] avformat/swfdec: fix memleak when inflateInit failed

Message ID 20191009073530.4505-10-lq@chinaffmpeg.org
State Accepted
Commit 70c6e8406984d435543fe172dae481c8de491619
Headers show

Commit Message

Liu Steven Oct. 9, 2019, 7:35 a.m. UTC
Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
---
 libavformat/swfdec.c | 2 ++
 1 file changed, 2 insertions(+)
diff mbox

Patch

diff --git a/libavformat/swfdec.c b/libavformat/swfdec.c
index 85bd30404e..a9358f09a9 100644
--- a/libavformat/swfdec.c
+++ b/libavformat/swfdec.c
@@ -152,6 +152,8 @@  static int swf_read_header(AVFormatContext *s)
         swf->zpb->seekable = 0;
         if (inflateInit(&swf->zstream) != Z_OK) {
             av_log(s, AV_LOG_ERROR, "Unable to init zlib context\n");
+            av_freep(&swf->zbuf_in);
+            av_freep(&swf->zbuf_out);
             return AVERROR(EINVAL);
         }
         pb = swf->zpb;