summaryrefslogtreecommitdiff
path: root/src/gallium
diff options
context:
space:
mode:
authorMarek Olšák <maraeo@gmail.com>2010-07-26 14:53:06 +0200
committerMarek Olšák <maraeo@gmail.com>2010-07-26 14:53:27 +0200
commitd26fb6916931f10e029429ecbf46e86484e7e956 (patch)
treefce273cc3296f8e7cd12fd4991b6de8d4f470ae1 /src/gallium
parent8c26dc2bfeaa2504d6bcc31caa200299d47772b8 (diff)
util: fix mutex leaks in mempool
Diffstat (limited to 'src/gallium')
-rw-r--r--src/gallium/auxiliary/util/u_mempool.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_mempool.c b/src/gallium/auxiliary/util/u_mempool.c
index 84e2a34acc..6b1a72a7f6 100644
--- a/src/gallium/auxiliary/util/u_mempool.c
+++ b/src/gallium/auxiliary/util/u_mempool.c
@@ -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);
}