mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/faxcompr: use av_malloc_array()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
36053aeff6
commit
713e62e91d
@ -287,8 +287,8 @@ int ff_ccitt_unpack(AVCodecContext *avctx, const uint8_t *src, int srcsize,
|
||||
int runsize = avctx->width + 2;
|
||||
int has_eol;
|
||||
|
||||
runs = av_malloc(runsize * sizeof(runs[0]));
|
||||
ref = av_malloc(runsize * sizeof(ref[0]));
|
||||
runs = av_malloc_array(runsize, sizeof(runs[0]));
|
||||
ref = av_malloc_array(runsize, sizeof(ref[0]));
|
||||
if (!runs || !ref) {
|
||||
ret = AVERROR(ENOMEM);
|
||||
goto fail;
|
||||
|
Loading…
Reference in New Issue
Block a user