From: Iain Holmes Date: Fri, 14 Nov 2003 15:54:47 +0000 (+0000) Subject: Make the type G_TYPE_POINTER instead of GST_TYPE_PLUGIN. Fixes a crash in gst-register X-Git-Tag: BRANCH-RELEASE-0_7_2-ROOT~26 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=34888f9abe69154bf91e9d280202679d56d0781b;p=platform%2Fupstream%2Fgstreamer.git Make the type G_TYPE_POINTER instead of GST_TYPE_PLUGIN. Fixes a crash in gst-register Original commit message from CVS: Make the type G_TYPE_POINTER instead of GST_TYPE_PLUGIN. Fixes a crash in gst-register --- diff --git a/gst/gstregistry.c b/gst/gstregistry.c index 3632a11..df0f856 100644 --- a/gst/gstregistry.c +++ b/gst/gstregistry.c @@ -85,7 +85,7 @@ gst_registry_class_init (GstRegistryClass *klass) g_signal_new ("plugin_added", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRegistryClass, plugin_added), NULL, NULL, gst_marshal_VOID__POINTER, G_TYPE_NONE, 1, - GST_TYPE_PLUGIN); + G_TYPE_POINTER); gobject_class->dispose = NULL; }