From 7c4d3a6c52a86acb022ee7201b1cd0dccb1b8c55 Mon Sep 17 00:00:00 2001 From: Vineeth TM Date: Fri, 10 Jul 2015 15:36:59 +0900 Subject: [PATCH] gst: Fix floating reference inconsistencies in error cases If a function takes a floating reference and sinks it, it should also do that in error cases. I.e. call ref_sink() followed by unref(). Otherwise the reference counting behaviour of the function will be different between the good and the error case, and simply inconsistent. https://bugzilla.gnome.org/show_bug.cgi?id=747990 --- gst/gstbin.c | 6 ++++++ gst/gstelement.c | 4 ++++ gst/gstobject.c | 2 ++ 3 files changed, 12 insertions(+) diff --git a/gst/gstbin.c b/gst/gstbin.c index 3c0b2da..688988f 100644 --- a/gst/gstbin.c +++ b/gst/gstbin.c @@ -1375,6 +1375,8 @@ duplicate_name: elem_name, GST_ELEMENT_NAME (bin)); GST_OBJECT_UNLOCK (bin); g_free (elem_name); + gst_object_ref_sink (element); + gst_object_unref (element); return FALSE; } had_parent: @@ -1382,6 +1384,8 @@ had_parent: g_warning ("Element '%s' already has parent", elem_name); GST_OBJECT_UNLOCK (bin); g_free (elem_name); + gst_object_ref_sink (element); + gst_object_unref (element); return FALSE; } } @@ -1537,6 +1541,8 @@ no_function: { g_warning ("adding elements to bin '%s' is not supported", GST_ELEMENT_NAME (bin)); + gst_object_ref_sink (element); + gst_object_unref (element); return FALSE; } } diff --git a/gst/gstelement.c b/gst/gstelement.c index bf579b4..94efcb4 100644 --- a/gst/gstelement.c +++ b/gst/gstelement.c @@ -723,6 +723,8 @@ name_exists: pad_name, GST_ELEMENT_NAME (element)); GST_OBJECT_UNLOCK (element); g_free (pad_name); + gst_object_ref_sink (pad); + gst_object_unref (pad); return FALSE; } had_parent: @@ -732,6 +734,8 @@ had_parent: pad_name, GST_ELEMENT_NAME (element)); GST_OBJECT_UNLOCK (element); g_free (pad_name); + gst_object_ref_sink (pad); + gst_object_unref (pad); return FALSE; } no_direction: diff --git a/gst/gstobject.c b/gst/gstobject.c index 32a406d..50fa1c7 100644 --- a/gst/gstobject.c +++ b/gst/gstobject.c @@ -693,6 +693,8 @@ had_parent: { GST_CAT_DEBUG_OBJECT (GST_CAT_REFCOUNTING, object, "set parent failed, object already had a parent"); + gst_object_ref_sink (object); + gst_object_unref (object); GST_OBJECT_UNLOCK (object); return FALSE; } -- 2.7.4