ext/gnomevfs/gstgnomevfssrc.c: free the mutexes, too
authorBenjamin Otte <otte@gnome.org>
Wed, 7 Apr 2004 00:42:10 +0000 (00:42 +0000)
committerBenjamin Otte <otte@gnome.org>
Wed, 7 Apr 2004 00:42:10 +0000 (00:42 +0000)
Original commit message from CVS:
* ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
free the mutexes, too

ChangeLog
ext/gnomevfs/gstgnomevfssrc.c

index 827e785..4351b43 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,11 @@
 2004-04-07  Benjamin Otte  <otte@gnome.org>
 
        * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
+         free the mutexes, too
+
+2004-04-07  Benjamin Otte  <otte@gnome.org>
+
+       * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
          actually free the URI string
        * ext/mad/gstid3tag.c: (gst_id3_tag_src_event):
          compute offset correctly when passing discont events
index a302ba8..e159e39 100644 (file)
@@ -381,6 +381,8 @@ gst_gnomevfssrc_dispose (GObject * object)
 
   g_free (src->filename);
   src->filename = NULL;
+  g_mutex_free (src->audiocast_udpdata_mutex);
+  g_mutex_free (src->audiocast_queue_mutex);
 
   G_OBJECT_CLASS (parent_class)->dispose (object);
 }