mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-09 14:14:39 +02: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);
|
avio_skip(pb, 4);
|
||||||
ico->nb_images = avio_rl16(pb);
|
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)
|
if (!ico->images)
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
|
|
||||||
|
@ -101,7 +101,7 @@ static int ico_write_header(AVFormatContext *s)
|
|||||||
avio_skip(pb, 16);
|
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)
|
if (!ico->images)
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user