From: Wim Taymans Date: Tue, 9 Jul 2002 15:45:14 +0000 (+0000) Subject: Fix the g_mutex_free in the fallback case X-Git-Tag: BRANCH-RELEASE-0_4_1-ROOT~164 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4b1379455d9a090f0b75c4b12b832e236cfae7fc;p=platform%2Fupstream%2Fgstreamer.git Fix the g_mutex_free in the fallback case Original commit message from CVS: Fix the g_mutex_free in the fallback case --- diff --git a/gst/gstatomic.h b/gst/gstatomic.h index db1c4c2..587cbfe 100644 --- a/gst/gstatomic.h +++ b/gst/gstatomic.h @@ -66,7 +66,7 @@ G_STMT_START { \ (ref)->lock = g_mutex_new(); \ } G_STMT_END -#define GST_ATOMIC_INT_FREE(ref) g_mutex_free (&(ref)->lock) +#define GST_ATOMIC_INT_FREE(ref) g_mutex_free ((ref)->lock) #define GST_ATOMIC_INT_SET(ref,val) \ G_STMT_START { \