mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-libstb-hal.git
synced 2025-08-27 15:32:43 +02:00
fix last commit, broken check logic
Origin commit data
------------------
Branch: master
Commit: 745959abf6
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2017-11-11 (Sat, 11 Nov 2017)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
committed by
TangoCash
parent
9ed727e7b4
commit
b75c67db53
@@ -253,7 +253,9 @@ GstBusSyncReply Gst_bus_call(GstBus *bus, GstMessage *msg, gpointer user_data)
|
|||||||
GstTagList *tags = NULL, *result = NULL;
|
GstTagList *tags = NULL, *result = NULL;
|
||||||
gst_message_parse_tag(msg, &tags);
|
gst_message_parse_tag(msg, &tags);
|
||||||
|
|
||||||
if(tags != NULL || !GST_IS_TAG_LIST(tags))
|
if(tags == NULL)
|
||||||
|
break;
|
||||||
|
if(!GST_IS_TAG_LIST(tags))
|
||||||
break;
|
break;
|
||||||
|
|
||||||
result = gst_tag_list_merge(m_stream_tags, tags, GST_TAG_MERGE_REPLACE);
|
result = gst_tag_list_merge(m_stream_tags, tags, GST_TAG_MERGE_REPLACE);
|
||||||
|
Reference in New Issue
Block a user