mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
mxfdemux: fix stray semicolons that mess up if statement
This commit is contained in:
parent
6a7b237da0
commit
3b99292629
1 changed files with 4 additions and 4 deletions
|
@ -439,8 +439,8 @@ gst_mxf_demux_handle_partition_pack (GstMXFDemux * demux, const MXFUL * key,
|
|||
for (l = demux->partitions; l; l = l->next) {
|
||||
GstMXFDemuxPartition *a, *b;
|
||||
|
||||
if (l->next == NULL);
|
||||
break;
|
||||
if (l->next == NULL)
|
||||
break;
|
||||
|
||||
a = l->data;
|
||||
b = l->next->data;
|
||||
|
@ -1921,8 +1921,8 @@ gst_mxf_demux_handle_random_index_pack (GstMXFDemux * demux, const MXFUL * key,
|
|||
for (l = demux->partitions; l; l = l->next) {
|
||||
GstMXFDemuxPartition *a, *b;
|
||||
|
||||
if (l->next == NULL);
|
||||
break;
|
||||
if (l->next == NULL)
|
||||
break;
|
||||
|
||||
a = l->data;
|
||||
b = l->next->data;
|
||||
|
|
Loading…
Reference in a new issue