avformat/mxfdec: cleanup on "essence prior to first PartitionPack"
Fixes: memleak Fixes: 18473/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-5738557074833408 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
81271b3cce
commit
9802599ad0
@ -3169,6 +3169,7 @@ static int mxf_read_header(AVFormatContext *s)
|
|||||||
|
|
||||||
if (!mxf_read_sync(s->pb, mxf_header_partition_pack_key, 14)) {
|
if (!mxf_read_sync(s->pb, mxf_header_partition_pack_key, 14)) {
|
||||||
av_log(s, AV_LOG_ERROR, "could not find header partition pack key\n");
|
av_log(s, AV_LOG_ERROR, "could not find header partition pack key\n");
|
||||||
|
//goto fail should not be needed as no metadata sets will have been parsed yet
|
||||||
return AVERROR_INVALIDDATA;
|
return AVERROR_INVALIDDATA;
|
||||||
}
|
}
|
||||||
avio_seek(s->pb, -14, SEEK_CUR);
|
avio_seek(s->pb, -14, SEEK_CUR);
|
||||||
@ -3199,7 +3200,8 @@ static int mxf_read_header(AVFormatContext *s)
|
|||||||
|
|
||||||
if (!mxf->current_partition) {
|
if (!mxf->current_partition) {
|
||||||
av_log(mxf->fc, AV_LOG_ERROR, "found essence prior to first PartitionPack\n");
|
av_log(mxf->fc, AV_LOG_ERROR, "found essence prior to first PartitionPack\n");
|
||||||
return AVERROR_INVALIDDATA;
|
ret = AVERROR_INVALIDDATA;
|
||||||
|
goto fail;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!mxf->current_partition->first_essence_klv.offset)
|
if (!mxf->current_partition->first_essence_klv.offset)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user