mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-23 09:04:15 +00:00
hlssink2: Fix string leak
Need to free allocated string memory on _finalize()
This commit is contained in:
parent
b0d22f8cb4
commit
2c81a50c2c
1 changed files with 1 additions and 0 deletions
|
@ -104,6 +104,7 @@ gst_hls_sink2_finalize (GObject * object)
|
||||||
g_free (sink->location);
|
g_free (sink->location);
|
||||||
g_free (sink->playlist_location);
|
g_free (sink->playlist_location);
|
||||||
g_free (sink->playlist_root);
|
g_free (sink->playlist_root);
|
||||||
|
g_free (sink->current_location);
|
||||||
if (sink->playlist)
|
if (sink->playlist)
|
||||||
gst_m3u8_playlist_free (sink->playlist);
|
gst_m3u8_playlist_free (sink->playlist);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue