Forgot to set the name on a new schedulerfactory, oops

Original commit message from CVS:
Forgot to set the name on a new schedulerfactory, oops
This commit is contained in:
Wim Taymans 2003-01-18 14:11:36 +00:00
parent 8e19b6a4d4
commit 6e55b3394c
2 changed files with 2 additions and 1 deletions

2
common

@ -1 +1 @@
Subproject commit 5b6a58f419c3d6fdd4abbe9943cd17a4fd2addcc
Subproject commit 895baa0fa0f829ef752424a31bbb2cf68e63842e

View file

@ -832,6 +832,7 @@ gst_scheduler_factory_new (const gchar *name, const gchar *longdesc, GType type)
if (!factory) {
factory = GST_SCHEDULER_FACTORY (g_object_new (GST_TYPE_SCHEDULER_FACTORY, NULL));
GST_PLUGIN_FEATURE_NAME (factory) = g_strdup (name);
}
else {
g_free (factory->longdesc);