mirror of
https://github.com/librempeg/librempeg
synced 2024-11-22 09:02:20 +00:00
avformat/ico: use avmalloc(z)_array()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
11b36b1ee0
commit
dd77f6469a
@ -58,7 +58,7 @@ static int read_header(AVFormatContext *s)
|
||||
avio_skip(pb, 4);
|
||||
ico->nb_images = avio_rl16(pb);
|
||||
|
||||
ico->images = av_malloc(ico->nb_images * sizeof(IcoImage));
|
||||
ico->images = av_malloc_array(ico->nb_images, sizeof(IcoImage));
|
||||
if (!ico->images)
|
||||
return AVERROR(ENOMEM);
|
||||
|
||||
|
@ -101,7 +101,7 @@ static int ico_write_header(AVFormatContext *s)
|
||||
avio_skip(pb, 16);
|
||||
}
|
||||
|
||||
ico->images = av_mallocz(ico->nb_images * sizeof(IcoMuxContext));
|
||||
ico->images = av_mallocz_array(ico->nb_images, sizeof(IcoMuxContext));
|
||||
if (!ico->images)
|
||||
return AVERROR(ENOMEM);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user