Commit 4a108116 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/nutdec: Use av_malloc_array()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 7c6b0436
...@@ -248,7 +248,7 @@ static int decode_main_header(NUTContext *nut) ...@@ -248,7 +248,7 @@ static int decode_main_header(NUTContext *nut)
} }
GET_V(nut->time_base_count, tmp > 0 && tmp < INT_MAX / sizeof(AVRational)); GET_V(nut->time_base_count, tmp > 0 && tmp < INT_MAX / sizeof(AVRational));
nut->time_base = av_malloc(nut->time_base_count * sizeof(AVRational)); nut->time_base = av_malloc_array(nut->time_base_count, sizeof(AVRational));
if (!nut->time_base) if (!nut->time_base)
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment