From 1ea365082318f06cd42a8b37dd0c7724b599c821 Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Tue, 14 Sep 2021 21:31:53 +0200 Subject: Replace all occurences of av_mallocz_array() by av_calloc() They do the same. Reviewed-by: Paul B Mahol Signed-off-by: Andreas Rheinhardt --- tools/ismindex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/ismindex.c b/tools/ismindex.c index 7601f62e06..d355cffe38 100644 --- a/tools/ismindex.c +++ b/tools/ismindex.c @@ -342,7 +342,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_array(track->chunks, sizeof(*track->offsets)); + track->offsets = av_calloc(track->chunks, sizeof(*track->offsets)); if (!track->offsets) { track->chunks = 0; ret = AVERROR(ENOMEM); -- cgit v1.2.3