mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-14 02:50:11 +01:00
avcodec/sunrast: Use av_malloc_array()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -127,7 +127,7 @@ static int sunrast_decode_frame(AVCodecContext *avctx, void *data,
|
|||||||
buf += maplength;
|
buf += maplength;
|
||||||
|
|
||||||
if (maplength && depth < 8) {
|
if (maplength && depth < 8) {
|
||||||
ptr = ptr2 = av_malloc((w + 15) * h);
|
ptr = ptr2 = av_malloc_array((w + 15), h);
|
||||||
if (!ptr)
|
if (!ptr)
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
stride = (w + 15 >> 3) * depth;
|
stride = (w + 15 >> 3) * depth;
|
||||||
|
|||||||
Reference in New Issue
Block a user