revert last commit
authorJohan Dahlin <johan@gnome.org>
Mon, 3 Oct 2005 04:25:54 +0000 (04:25 +0000)
committerJohan Dahlin <johan@gnome.org>
Mon, 3 Oct 2005 04:25:54 +0000 (04:25 +0000)
Original commit message from CVS:
revert last commit

ext/gnomevfs/gstgnomevfssrc.c

index bee1ffa..92914a1 100644 (file)
@@ -106,7 +106,6 @@ typedef struct _GstGnomeVFSSrc
   gint audiocast_thread_die_outfd;
   gint audiocast_port;
   gint audiocast_fd;
-  GMutex *list_uris_mutex;
 } GstGnomeVFSSrc;
 
 typedef struct _GstGnomeVFSSrcClass
@@ -344,16 +343,9 @@ static gchar **
 gst_gnomevfssrc_uri_get_protocols (void)
 {
   static gchar **protocols = NULL;
-  static GMutex *mutex = NULL;
 
-  if (G_UNLIKELY (!protocols)) {
-    if (!mutex)
-      mutex = g_mutex_new ();
-
-    g_mutex_lock (mutex);
+  if (!protocols)
     protocols = gst_gnomevfs_get_supported_uris ();
-    g_mutex_unlock (mutex);
-  }
 
   return protocols;
 }