mirror of https://git.ffmpeg.org/ffmpeg.git
Merge commit '2620df13104ddaa136158eb6bb1195adbf9d7692'
* commit '2620df13104ddaa136158eb6bb1195adbf9d7692': mov: Free an earlier allocated array if allocating a new one Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
fb37d03a87
|
@ -1913,6 +1913,7 @@ static int mov_read_stts(MOVContext *c, AVIOContext *pb, MOVAtom atom)
|
||||||
if (entries >= UINT_MAX / sizeof(*sc->stts_data))
|
if (entries >= UINT_MAX / sizeof(*sc->stts_data))
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
|
av_free(sc->stts_data);
|
||||||
sc->stts_data = av_malloc(entries * sizeof(*sc->stts_data));
|
sc->stts_data = av_malloc(entries * sizeof(*sc->stts_data));
|
||||||
if (!sc->stts_data)
|
if (!sc->stts_data)
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
|
|
Loading…
Reference in New Issue