From 58a53123bae90798155bd11a0db680b334abf4e4 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 16 Apr 2014 19:45:43 +0200 Subject: avcodec/vble: use av_malloc_array() Signed-off-by: Michael Niedermayer --- libavcodec/vble.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/vble.c') diff --git a/libavcodec/vble.c b/libavcodec/vble.c index a8c71ed9c9..ed08b832a9 100644 --- a/libavcodec/vble.c +++ b/libavcodec/vble.c @@ -189,7 +189,7 @@ static av_cold int vble_decode_init(AVCodecContext *avctx) ctx->size = avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height); - ctx->val = av_malloc(ctx->size * sizeof(*ctx->val)); + ctx->val = av_malloc_array(ctx->size, sizeof(*ctx->val)); if (!ctx->val) { av_log(avctx, AV_LOG_ERROR, "Could not allocate values buffer.\n"); -- cgit v1.2.3