diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-08-31 13:14:02 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-08-31 13:14:02 +0100 |
commit | 10d67eda7a2efff834e67b6c34a092494005a1b0 (patch) | |
tree | e2318dc4994c6395c13503fa05e5c2f5502b29ff /ext/mplex/gstmplex.cc | |
parent | d94d572e16c590ed619bfaed23100b80516ce6f7 (diff) | |
download | gstreamer-plugins-bad-10d67eda7a2efff834e67b6c34a092494005a1b0.tar.gz |
GstAdapter is not a GstObject and should be freed with g_object_unref()
Diffstat (limited to 'ext/mplex/gstmplex.cc')
-rw-r--r-- | ext/mplex/gstmplex.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mplex/gstmplex.cc b/ext/mplex/gstmplex.cc index ae08e2e19..677db8d07 100644 --- a/ext/mplex/gstmplex.cc +++ b/ext/mplex/gstmplex.cc @@ -238,7 +238,7 @@ gst_mplex_reset (GstMplex * mplex) if (!mpad->pad) { g_cond_free (mpad->cond); - gst_object_unref (mpad->adapter); + g_object_unref (mpad->adapter); g_free (mpad); } else nlist = g_slist_append (nlist, mpad); |