Skip to content
Snippets Groups Projects
Commit 1d23930c authored by Vineeth TM's avatar Vineeth TM Committed by Sebastian Dröge
Browse files

wavpackdec: fix taglist memory leak

When passing the taglist to gst_audio_decoder_merge_tags, the reference is increased
by audiodecoder and the caller should free the taglist being passed.

https://bugzilla.gnome.org/show_bug.cgi?id=753903
parent dd45e45e
No related branches found
No related tags found
No related merge requests found
......@@ -266,6 +266,7 @@ gst_wavpack_dec_post_tags (GstWavpackDec * dec)
(guint) bitrate, NULL);
gst_audio_decoder_merge_tags (GST_AUDIO_DECODER (dec), list,
GST_TAG_MERGE_REPLACE);
gst_tag_list_unref (list);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment