From 0b9575ff7f9d381931c4cb356f04766ab19a7110 Mon Sep 17 00:00:00 2001 From: Jacek Jendrzej Date: Tue, 14 Nov 2017 15:13:13 +0100 Subject: [PATCH] fix merge error --- 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 e543146..1e2012a 100644 --- a/libarmbox/playback_gst.cpp +++ b/libarmbox/playback_gst.cpp @@ -449,7 +449,7 @@ cPlayback::~cPlayback() //FIXME: all deleting stuff is done in Close() pthread_mutex_lock (&mutex_tag_ist); if (m_stream_tags) - gst_tag_list_free(m_stream_tags); + gst_tag_list_unref(m_stream_tags); pthread_mutex_unlock (&mutex_tag_ist); }