From 015c5dda8f68795a1616ae9a17e20afb1c79d3be Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Thu, 8 Oct 2009 08:53:26 +0200 Subject: [PATCH] gstobject: Remove dead assignment. object is no longer used after that line --- gst/gstobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/gstobject.c b/gst/gstobject.c index f5188d53ca..1a679dba00 100644 --- a/gst/gstobject.c +++ b/gst/gstobject.c @@ -461,7 +461,7 @@ have_parent: GST_OBJECT_NAME (object), GST_OBJECT_NAME (parent)); GST_OBJECT_UNLOCK (object); /* ref the object again to revive it in this error case */ - object = gst_object_ref (object); + gst_object_ref (object); return; } }