Skip to content
Snippets Groups Projects
Commit b395167d authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

tools/ismindex: use av_mallocz_array()

parent a69e16a9
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment