mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-19 05:55:07 +00:00
avfilter/vf_libopencv: Use av_mallocz_array()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
375d7ee805
commit
4932b1e8b8
@ -166,7 +166,7 @@ static int read_shape_from_file(int *cols, int *rows, int **values, const char *
|
||||
*rows, *cols);
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
if (!(*values = av_mallocz(sizeof(int) * *rows * *cols)))
|
||||
if (!(*values = av_mallocz_array(sizeof(int) * *rows, *cols)))
|
||||
return AVERROR(ENOMEM);
|
||||
|
||||
/* fill *values */
|
||||
|
Loading…
Reference in New Issue
Block a user