From b395167d56d53ff021e11ec11b3f4b356d3383c6 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 5 May 2014 18:40:55 +0200 Subject: [PATCH] tools/ismindex: use av_mallocz_array() Signed-off-by: Michael Niedermayer --- tools/ismindex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ismindex.c b/tools/ismindex.c index 4dc3e125e3..759bc0f5a4 100644 --- a/tools/ismindex.c +++ b/tools/ismindex.c @@ -163,7 +163,7 @@ static int read_tfra(struct Tracks *tracks, int start_index, AVIOContext *f) } fieldlength = avio_rb32(f); track->chunks = avio_rb32(f); - track->offsets = av_mallocz(sizeof(*track->offsets) * track->chunks); + track->offsets = av_mallocz_array(track->chunks, sizeof(*track->offsets)); if (!track->offsets) { ret = AVERROR(ENOMEM); goto fail;