mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-libstb-hal.git
synced 2025-08-26 23:12:44 +02:00
check m_stream_tags if not NULL
Origin commit data
------------------
Branch: master
Commit: be5bf56314
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2017-11-10 (Fri, 10 Nov 2017)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
@@ -1014,7 +1014,9 @@ void cPlayback::GetMetadata(std::vector<std::string> &keys, std::vector<std::str
|
||||
keys.clear();
|
||||
values.clear();
|
||||
|
||||
GstTagList *meta_list = gst_tag_list_copy(m_stream_tags);
|
||||
GstTagList *meta_list = NULL;
|
||||
if(m_stream_tags)
|
||||
meta_list = gst_tag_list_copy(m_stream_tags);
|
||||
|
||||
if (meta_list == NULL)
|
||||
return;
|
||||
|
Reference in New Issue
Block a user