You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
mov: avoid a memleak when multiple stss boxes are present
CC: libav-stable@libav.org Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
This commit is contained in:
@@ -1819,6 +1819,7 @@ static int mov_read_stss(MOVContext *c, AVIOContext *pb, MOVAtom atom)
|
|||||||
}
|
}
|
||||||
if (entries >= UINT_MAX / sizeof(int))
|
if (entries >= UINT_MAX / sizeof(int))
|
||||||
return AVERROR_INVALIDDATA;
|
return AVERROR_INVALIDDATA;
|
||||||
|
av_freep(&sc->keyframes);
|
||||||
sc->keyframes = av_malloc(entries * sizeof(int));
|
sc->keyframes = av_malloc(entries * sizeof(int));
|
||||||
if (!sc->keyframes)
|
if (!sc->keyframes)
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
|
Reference in New Issue
Block a user