mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
gstobject: Avoid double strdup when setting NULL names.
Instead of chaining up to gst_object_set_name (which does typechecking and strdup's the name again), just use the already allocated new name.
This commit is contained in:
parent
bfef4a70bf
commit
4140350594
1 changed files with 15 additions and 4 deletions
|
@ -595,7 +595,6 @@ gst_object_set_name_default (GstObject * object)
|
|||
const gchar *type_name;
|
||||
gint count;
|
||||
gchar *name, *tmp;
|
||||
gboolean result;
|
||||
GQuark q;
|
||||
|
||||
/* to ensure guaranteed uniqueness across threads, only one thread
|
||||
|
@ -620,10 +619,22 @@ gst_object_set_name_default (GstObject * object)
|
|||
name = g_ascii_strdown (tmp, -1);
|
||||
g_free (tmp);
|
||||
|
||||
result = gst_object_set_name (object, name);
|
||||
g_free (name);
|
||||
GST_OBJECT_LOCK (object);
|
||||
if (G_UNLIKELY (object->parent != NULL))
|
||||
goto had_parent;
|
||||
g_free (object->name);
|
||||
object->name = name;
|
||||
|
||||
return result;
|
||||
GST_OBJECT_UNLOCK (object);
|
||||
|
||||
return TRUE;
|
||||
|
||||
had_parent:
|
||||
{
|
||||
GST_WARNING ("parented objects can't be renamed");
|
||||
GST_OBJECT_UNLOCK (object);
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue