mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-libstb-hal.git
synced 2025-08-26 23:12:44 +02:00
fix last commit, broken check logic
Origin commit data
------------------
Branch: master
Commit: b67c8b39b5
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:
@@ -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