You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-11 14:30:22 +02:00
avformat/mxfdec: use av_realloc_array()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@ -433,10 +433,7 @@ static int mxf_read_partition_pack(void *arg, AVIOContext *pb, int tag, int size
|
|||||||
uint64_t footer_partition;
|
uint64_t footer_partition;
|
||||||
uint32_t nb_essence_containers;
|
uint32_t nb_essence_containers;
|
||||||
|
|
||||||
if (mxf->partitions_count+1 >= UINT_MAX / sizeof(*mxf->partitions))
|
tmp_part = av_realloc_array(mxf->partitions, mxf->partitions_count + 1, sizeof(*mxf->partitions));
|
||||||
return AVERROR(ENOMEM);
|
|
||||||
|
|
||||||
tmp_part = av_realloc(mxf->partitions, (mxf->partitions_count + 1) * sizeof(*mxf->partitions));
|
|
||||||
if (!tmp_part)
|
if (!tmp_part)
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
mxf->partitions = tmp_part;
|
mxf->partitions = tmp_part;
|
||||||
@ -563,9 +560,8 @@ static int mxf_read_partition_pack(void *arg, AVIOContext *pb, int tag, int size
|
|||||||
static int mxf_add_metadata_set(MXFContext *mxf, void *metadata_set)
|
static int mxf_add_metadata_set(MXFContext *mxf, void *metadata_set)
|
||||||
{
|
{
|
||||||
MXFMetadataSet **tmp;
|
MXFMetadataSet **tmp;
|
||||||
if (mxf->metadata_sets_count+1 >= UINT_MAX / sizeof(*mxf->metadata_sets))
|
|
||||||
return AVERROR(ENOMEM);
|
tmp = av_realloc_array(mxf->metadata_sets, mxf->metadata_sets_count + 1, sizeof(*mxf->metadata_sets));
|
||||||
tmp = av_realloc(mxf->metadata_sets, (mxf->metadata_sets_count + 1) * sizeof(*mxf->metadata_sets));
|
|
||||||
if (!tmp)
|
if (!tmp)
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
mxf->metadata_sets = tmp;
|
mxf->metadata_sets = tmp;
|
||||||
|
Reference in New Issue
Block a user