From 90719d7f357f1301fde818ce53418ff49fc6eb62 Mon Sep 17 00:00:00 2001 From: Jacek Jendrzej Date: Tue, 24 Oct 2017 18:32:36 +0200 Subject: [PATCH] fix null list Origin commit data ------------------ Branch: master Commit: https://github.com/neutrino-images/ni-libstb-hal/commit/c0963b38f066a3b1b98bfb73ab6e6b546d440dc3 Author: Jacek Jendrzej Date: 2017-10-24 (Tue, 24 Oct 2017) ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- libarmbox/playback_gst.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libarmbox/playback_gst.cpp b/libarmbox/playback_gst.cpp index f1df4b8..f402cd0 100644 --- a/libarmbox/playback_gst.cpp +++ b/libarmbox/playback_gst.cpp @@ -457,7 +457,7 @@ cPlayback::~cPlayback() //FIXME: all deleting stuff is done in Close() pthread_mutex_lock (&mutex_tag_ist); if (m_stream_tags) - gst_tag_list_unref(m_stream_tags); + gst_tag_list_free(m_stream_tags); pthread_mutex_unlock (&mutex_tag_ist); }