From 60c8c7144e1df36f1399a11f4085f10e4c5b1ef5 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 18 Apr 2014 18:57:58 +0200 Subject: avcodec/qtrleenc: use av_mallocz_array() Signed-off-by: Michael Niedermayer --- libavcodec/qtrleenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec') diff --git a/libavcodec/qtrleenc.c b/libavcodec/qtrleenc.c index 7f9525abe0..8750e3097a 100644 --- a/libavcodec/qtrleenc.c +++ b/libavcodec/qtrleenc.c @@ -106,7 +106,7 @@ static av_cold int qtrle_encode_init(AVCodecContext *avctx) s->rlecode_table = av_mallocz(s->logical_width); s->skip_table = av_mallocz(s->logical_width); - s->length_table = av_mallocz((s->logical_width + 1)*sizeof(int)); + s->length_table = av_mallocz_array(s->logical_width + 1, sizeof(int)); if (!s->skip_table || !s->length_table || !s->rlecode_table) { av_log(avctx, AV_LOG_ERROR, "Error allocating memory.\n"); return AVERROR(ENOMEM); -- cgit v1.2.3