mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-17 20:17:55 +02:00
avformat/mov: Fix extradata memleak
Fixes: crbug 822705 Reported-by: Matt Wolenetz <wolenetz@google.com> Reviewed-by: Matt Wolenetz <wolenetz@google.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 0a8133119ca5d087c7c7140d100406ff84c477ee) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
ae136f8d64
commit
0f868badcf
@ -2402,6 +2402,12 @@ static int mov_read_stsd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
|
||||
|
||||
return mov_finalize_stsd_codec(c, pb, st, sc);
|
||||
fail:
|
||||
if (sc->extradata) {
|
||||
int j;
|
||||
for (j = 0; j < sc->stsd_count; j++)
|
||||
av_freep(&sc->extradata[j]);
|
||||
}
|
||||
|
||||
av_freep(&sc->extradata);
|
||||
av_freep(&sc->extradata_size);
|
||||
return ret;
|
||||
|
Loading…
x
Reference in New Issue
Block a user