tools/sidxindex: Use av_*malloc_array()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2015-04-01 17:40:30 +02:00
parent c49e7924a8
commit 5b32558fd8

View File

@ -156,8 +156,8 @@ static int handle_file(struct Tracks *tracks, const char *file)
err = AVERROR(ENOMEM); err = AVERROR(ENOMEM);
goto fail; goto fail;
} }
temp = av_realloc(tracks->tracks, temp = av_realloc_array(tracks->tracks, tracks->nb_tracks + 1,
sizeof(*tracks->tracks) * (tracks->nb_tracks + 1)); sizeof(*tracks->tracks));
if (!temp) { if (!temp) {
av_free(track); av_free(track);
err = AVERROR(ENOMEM); err = AVERROR(ENOMEM);
@ -244,7 +244,7 @@ static int output_mpd(struct Tracks *tracks, const char *filename)
nb_tracks = nb_tracks_buf; nb_tracks = nb_tracks_buf;
nb_sets = 2; nb_sets = 2;
for (i = 0; i < 2; i++) { for (i = 0; i < 2; i++) {
adaptation_sets[i] = av_malloc(sizeof(*adaptation_sets[i]) * tracks->nb_tracks); adaptation_sets[i] = av_malloc_array(tracks->nb_tracks, sizeof(*adaptation_sets[i]));
if (!adaptation_sets[i]) { if (!adaptation_sets[i]) {
ret = AVERROR(ENOMEM); ret = AVERROR(ENOMEM);
goto err; goto err;