mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-04-01 22:49:21 +00:00
4xm: Replace av_realloc by av_realloc_f when relevant.
Signed-off-by: Nicolas George <nicolas.george@normalesup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
769298a686
commit
0cc44facf1
@ -174,8 +174,9 @@ static int fourxm_read_header(AVFormatContext *s,
|
|||||||
}
|
}
|
||||||
if (current_track + 1 > fourxm->track_count) {
|
if (current_track + 1 > fourxm->track_count) {
|
||||||
fourxm->track_count = current_track + 1;
|
fourxm->track_count = current_track + 1;
|
||||||
fourxm->tracks = av_realloc(fourxm->tracks,
|
fourxm->tracks = av_realloc_f(fourxm->tracks,
|
||||||
fourxm->track_count * sizeof(AudioTrack));
|
sizeof(AudioTrack),
|
||||||
|
fourxm->track_count);
|
||||||
if (!fourxm->tracks) {
|
if (!fourxm->tracks) {
|
||||||
ret= AVERROR(ENOMEM);
|
ret= AVERROR(ENOMEM);
|
||||||
goto fail;
|
goto fail;
|
||||||
|
Loading…
Reference in New Issue
Block a user