forked from jengelh/ffmpeg-4
Jan Engelhardt
3ed162e90c
- Remove second hunk of ffmpeg-CVE-2020-22046.patch, that contains a goto to a none existing label. In order to distinguish this patch from the original, I renamed it to ffmpeg-4.4-CVE-2020-22046.patch - While at it, refresh the other patches with offsets OBS-URL: https://build.opensuse.org/request/show/905444 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/ffmpeg-4?expand=0&rev=167
27 lines
734 B
Diff
27 lines
734 B
Diff
From 097c917c147661f5378dae8fe3f7e46f43236426 Mon Sep 17 00:00:00 2001
|
|
From: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
|
|
Date: Thu, 17 Oct 2019 11:11:55 +0200
|
|
Subject: [PATCH] avcodec/ac3enc: Fix memleak
|
|
|
|
Fixes ticket #8294.
|
|
|
|
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
|
|
---
|
|
libavcodec/ac3enc.c | 5 +++--
|
|
1 file changed, 3 insertions(+), 2 deletions(-)
|
|
|
|
Index: b/libavcodec/ac3enc.c
|
|
===================================================================
|
|
--- a/libavcodec/ac3enc.c
|
|
+++ b/libavcodec/ac3enc.c
|
|
@@ -2148,7 +2148,8 @@ av_cold int ff_ac3_encode_close(AVCodecC
|
|
av_freep(&block->cpl_coord_mant);
|
|
}
|
|
|
|
- s->mdct_end(s);
|
|
+ if (s->mdct_end)
|
|
+ s->mdct_end(s);
|
|
|
|
return 0;
|
|
}
|