ext/gnomevfs/gstgnomevfssrc.c: free the mutexes, too

Original commit message from CVS:
* ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
free the mutexes, too
This commit is contained in:
Benjamin Otte 2004-04-07 00:42:10 +00:00
parent e6cf95ecfe
commit f9eeda8ad2
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,8 @@
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):

View 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);
}