gst/gst.c: Fix compilation with registry disabled as spotted by Saur.
authorWim Taymans <wim.taymans@gmail.com>
Tue, 20 Mar 2007 10:23:25 +0000 (10:23 +0000)
committerWim Taymans <wim.taymans@gmail.com>
Tue, 20 Mar 2007 10:23:25 +0000 (10:23 +0000)
Original commit message from CVS:
* gst/gst.c:
Fix compilation with registry disabled as spotted by Saur.

ChangeLog
gst/gst.c

index 351948356ee9b2194e47497b5c37e5e6d1fa5136..4422eef276b052969d875c4c49c696dee438d019 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-03-20  Wim Taymans  <wim@fluendo.com>
+
+       * gst/gst.c:
+       Fix compilation with registry disabled as spotted by Saur.
+
 2007-03-20  Wim Taymans  <wim@fluendo.com>
 
        Patch by: Olivier Crete <tester at tester dot ca>
index a2c8d0aaae12187989bd1084680d95a58e87e6c1..8610a61d94f917fdeb911a6fb60037c0411a5a0b 100644 (file)
--- a/gst/gst.c
+++ b/gst/gst.c
@@ -1191,9 +1191,11 @@ gst_deinit (void)
   g_slist_free (preload_plugins);
   preload_plugins = NULL;
 
+#ifndef GST_DISABLE_REGISTRY
   g_list_foreach (plugin_paths, (GFunc) g_free, NULL);
   g_list_free (plugin_paths);
   plugin_paths = NULL;
+#endif
 
   clock = gst_system_clock_obtain ();
   gst_object_unref (clock);