Commit cfa3caf8 authored by Baptiste Coudurier's avatar Baptiste Coudurier

check body partitions count before writing

Originally committed as revision 17175 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 2779cdad
......@@ -1112,7 +1112,7 @@ static void mxf_write_partition(AVFormatContext *s, int bodysid,
if (!memcmp(key, body_partition_key, 16) && mxf->body_partitions_count > 1)
put_be64(pb, mxf->body_partition_offset[mxf->body_partitions_count-2]); // PreviousPartition
else if (!memcmp(key, footer_partition_key, 16))
else if (!memcmp(key, footer_partition_key, 16) && mxf->body_partitions_count)
put_be64(pb, mxf->body_partition_offset[mxf->body_partitions_count-1]); // PreviousPartition
else
put_be64(pb, 0);
......
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