mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 11:19:55 +00:00
mxfdec: Check for NULL component
This fixes SIGSEGV with zzuf1.mxf
This commit is contained in:
parent
5b718009b2
commit
5e5e69d078
@ -1276,7 +1276,7 @@ static int mxf_parse_structural_metadata(MXFContext *mxf)
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (!source_track)
|
||||
if (!source_track || !component)
|
||||
continue;
|
||||
|
||||
if (!(source_track->sequence = mxf_resolve_strong_ref(mxf, &source_track->sequence_ref, Sequence))) {
|
||||
|
Loading…
Reference in New Issue
Block a user