util: fix mutex leaks in mempool
authorMarek Olšák <maraeo@gmail.com>
Mon, 26 Jul 2010 12:53:06 +0000 (14:53 +0200)
committerMarek Olšák <maraeo@gmail.com>
Mon, 26 Jul 2010 12:53:27 +0000 (14:53 +0200)
src/gallium/auxiliary/util/u_mempool.c

index 84e2a34..6b1a72a 100644 (file)
@@ -126,7 +126,6 @@ void util_mempool_set_thread_safety(struct util_mempool *pool,
    pool->threading = threading;
 
    if (threading) {
-      pipe_mutex_init(pool->mutex);
       pool->malloc = util_mempool_malloc_mt;
       pool->free = util_mempool_free_mt;
    } else {
@@ -152,6 +151,8 @@ void util_mempool_create(struct util_mempool *pool,
 
    make_empty_list(&pool->list);
 
+   pipe_mutex_init(pool->mutex);
+
    util_mempool_set_thread_safety(pool, threading);
 }