mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +00:00
Fix the g_mutex_free in the fallback case
Original commit message from CVS: Fix the g_mutex_free in the fallback case
This commit is contained in:
parent
ecca9fa96a
commit
4b1379455d
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ G_STMT_START { \
|
||||||
(ref)->lock = g_mutex_new(); \
|
(ref)->lock = g_mutex_new(); \
|
||||||
} G_STMT_END
|
} 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) \
|
#define GST_ATOMIC_INT_SET(ref,val) \
|
||||||
G_STMT_START { \
|
G_STMT_START { \
|
||||||
|
|
Loading…
Reference in a new issue