Re: [FFmpeg-devel] [PATCH 2/5] avformat/mov: Fix memleak in dref reading

2020-11-25 Thread Michael Niedermayer
On Fri, Oct 30, 2020 at 10:52:03PM +0100, Michael Niedermayer wrote: > Fixes: leak in mov_read_dref() > Fixes: > 26698/clusterfuzz-testcase-minimized-ffmpeg_dem_MOV_fuzzer-5638785444085760 > > Found-by: continuous fuzzing process > https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg >

[FFmpeg-devel] [PATCH 2/5] avformat/mov: Fix memleak in dref reading

2020-10-30 Thread Michael Niedermayer
Fixes: leak in mov_read_dref() Fixes: 26698/clusterfuzz-testcase-minimized-ffmpeg_dem_MOV_fuzzer-5638785444085760 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer --- libavformat/mov.c | 5 + 1 file chang

Re: [FFmpeg-devel] [PATCH 2/5] avformat/mov: Fix memleak

2019-09-17 Thread Michael Niedermayer
On Mon, Sep 16, 2019 at 05:54:59PM +0200, Andreas Rheinhardt wrote: > When the mov/mp4 demuxer encounters an error during decrypting a packet, > it returns the error, yet doesn't free the packet, so that the packet > leaks. This has been fixed in this commit. > > Fixes the memleaks from ticket #81

[FFmpeg-devel] [PATCH 2/5] avformat/mov: Fix memleak

2019-09-16 Thread Andreas Rheinhardt
When the mov/mp4 demuxer encounters an error during decrypting a packet, it returns the error, yet doesn't free the packet, so that the packet leaks. This has been fixed in this commit. Fixes the memleaks from ticket #8150. Signed-off-by: Andreas Rheinhardt --- This only fixes the memleaks from