[FFmpeg-devel] [PATCH] avformat/mov: fix memleak
Zhao Zhili
quinkblack at foxmail.com
Sat Jun 27 21:15:02 EEST 2020
Remove the check on dv_demux since dv_fctx will leak if allocate
dv_demux failed.
---
libavformat/mov.c | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/libavformat/mov.c b/libavformat/mov.c
index adc52de947..f179b6efdd 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -7357,10 +7357,9 @@ static int mov_read_close(AVFormatContext *s)
av_freep(&sc->coll);
}
- if (mov->dv_demux) {
- avformat_free_context(mov->dv_fctx);
- mov->dv_fctx = NULL;
- }
+ av_freep(&mov->dv_demux);
+ avformat_free_context(mov->dv_fctx);
+ mov->dv_fctx = NULL;
if (mov->meta_keys) {
for (i = 1; i < mov->meta_keys_count; i++) {
--
2.25.1
More information about the ffmpeg-devel
mailing list