Commit 1a4e4ad0 authored by Luca Barbato's avatar Luca Barbato

mxf: Use av_malloc_array

parent f5fbbbc0
...@@ -1234,9 +1234,9 @@ static int mxf_compute_index_tables(MXFContext *mxf) ...@@ -1234,9 +1234,9 @@ static int mxf_compute_index_tables(MXFContext *mxf)
} }
} }
if (mxf->nb_index_tables > INT_MAX / sizeof(MXFIndexTable) || mxf->index_tables = av_mallocz_array(mxf->nb_index_tables,
!(mxf->index_tables = av_mallocz(mxf->nb_index_tables * sizeof(*mxf->index_tables));
sizeof(MXFIndexTable)))) { if (!mxf->index_tables) {
av_log(mxf->fc, AV_LOG_ERROR, "failed to allocate index tables\n"); av_log(mxf->fc, AV_LOG_ERROR, "failed to allocate index tables\n");
ret = AVERROR(ENOMEM); ret = AVERROR(ENOMEM);
goto finish_decoding_index; goto finish_decoding_index;
...@@ -1255,10 +1255,10 @@ static int mxf_compute_index_tables(MXFContext *mxf) ...@@ -1255,10 +1255,10 @@ static int mxf_compute_index_tables(MXFContext *mxf)
for (i = j = 0; j < mxf->nb_index_tables; i += mxf->index_tables[j++].nb_segments) { for (i = j = 0; j < mxf->nb_index_tables; i += mxf->index_tables[j++].nb_segments) {
MXFIndexTable *t = &mxf->index_tables[j]; MXFIndexTable *t = &mxf->index_tables[j];
if (t->nb_segments > t->segments = av_mallocz_array(t->nb_segments,
(INT_MAX / sizeof(MXFIndexTableSegment *)) || sizeof(*t->segments));
!(t->segments = av_mallocz(t->nb_segments *
sizeof(MXFIndexTableSegment*)))) { if (!t->segments) {
av_log(mxf->fc, AV_LOG_ERROR, "failed to allocate IndexTableSegment" av_log(mxf->fc, AV_LOG_ERROR, "failed to allocate IndexTableSegment"
" pointer array\n"); " pointer array\n");
ret = AVERROR(ENOMEM); ret = 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