mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
mxf: fix stop date parsing using the wrong input
Coverity 1139645
This commit is contained in:
parent
f06e18595a
commit
8e580ea6f1
1 changed files with 1 additions and 1 deletions
|
@ -4712,7 +4712,7 @@ mxf_dms1_rights_handle_tag (MXFMetadataBase * metadata, MXFPrimerPack * primer,
|
|||
GST_DEBUG (" rights start date and time = %s",
|
||||
mxf_timestamp_to_string (&self->rights_start_date_and_time, str));
|
||||
} else if (memcmp (tag_ul, &rights_stop_date_and_time_ul, 16) == 0) {
|
||||
if (!mxf_timestamp_parse (&self->rights_start_date_and_time, tag_data,
|
||||
if (!mxf_timestamp_parse (&self->rights_stop_date_and_time, tag_data,
|
||||
tag_size))
|
||||
goto error;
|
||||
|
||||
|
|
Loading…
Reference in a new issue