mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-04 06:08:26 +02:00
tools/ismindex: Keep count fields consistent with arrays in case of errors
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
d2838f09d6
commit
a0a7b154bb
@ -340,6 +340,7 @@ static int read_tfra(struct Tracks *tracks, int start_index, AVIOContext *f)
|
||||
track->chunks = avio_rb32(f);
|
||||
track->offsets = av_mallocz_array(track->chunks, sizeof(*track->offsets));
|
||||
if (!track->offsets) {
|
||||
track->chunks = 0;
|
||||
ret = AVERROR(ENOMEM);
|
||||
goto fail;
|
||||
}
|
||||
@ -448,10 +449,11 @@ fail:
|
||||
|
||||
static int get_private_data(struct Track *track, AVCodecContext *codec)
|
||||
{
|
||||
track->codec_private_size = codec->extradata_size;
|
||||
track->codec_private_size = 0;
|
||||
track->codec_private = av_mallocz(codec->extradata_size);
|
||||
if (!track->codec_private)
|
||||
return AVERROR(ENOMEM);
|
||||
track->codec_private_size = codec->extradata_size;
|
||||
memcpy(track->codec_private, codec->extradata, codec->extradata_size);
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user