diff options
Diffstat (limited to 'src/mem_pool.c')
-rw-r--r-- | src/mem_pool.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mem_pool.c b/src/mem_pool.c index 2c111681f..9cc4a537d 100644 --- a/src/mem_pool.c +++ b/src/mem_pool.c @@ -620,6 +620,9 @@ memory_pool_delete (memory_pool_t * pool) mem_pool_stat->pools_freed++; POOL_MTX_UNLOCK (); +#if ((GLIB_MAJOR_VERSION == 2) && (GLIB_MINOR_VERSION > 30)) + g_mutex_clear (&pool->mtx); +#endif g_slice_free (memory_pool_t, pool); } |