summaryrefslogtreecommitdiff
path: root/ext/hls/m3u8.c
diff options
context:
space:
mode:
authorEdward Hervey <edward@centricular.com>2017-11-25 13:10:11 +0100
committerEdward Hervey <bilboed@bilboed.com>2017-11-25 13:10:11 +0100
commitc92694e12a438d188e2cb5e19ba751df28043b2e (patch)
treeabeaf61124629e16ab84d35d0bed05815fb8c885 /ext/hls/m3u8.c
parentf0ba09d10e845ea8fb940e3996f8f9e28d01a3d3 (diff)
downloadgstreamer-plugins-bad-c92694e12a438d188e2cb5e19ba751df28043b2e.tar.gz
hls: Don't leak mutex
Diffstat (limited to 'ext/hls/m3u8.c')
-rw-r--r--ext/hls/m3u8.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/hls/m3u8.c b/ext/hls/m3u8.c
index f62cfe750..1d210c325 100644
--- a/ext/hls/m3u8.c
+++ b/ext/hls/m3u8.c
@@ -108,6 +108,7 @@ gst_m3u8_unref (GstM3U8 * self)
g_list_free (self->files);
g_free (self->last_data);
+ g_mutex_clear (&self->lock);
g_free (self);
}
}