mirror of
https://github.com/tuxbox-neutrino/libstb-hal.git
synced 2025-08-26 23:13:16 +02:00
fix last commit, broken check logic
This commit is contained in:
@@ -256,7 +256,9 @@ GstBusSyncReply Gst_bus_call(GstBus *bus, GstMessage *msg, gpointer user_data)
|
||||
GstTagList *tags = NULL, *result = NULL;
|
||||
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;
|
||||
|
||||
result = gst_tag_list_merge(m_stream_tags, tags, GST_TAG_MERGE_REPLACE);
|
||||
|
Reference in New Issue
Block a user