summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/gallium/auxiliary/util/u_mempool.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_mempool.c b/src/gallium/auxiliary/util/u_mempool.c
index 0ce4b6cf1a..84e2a34acc 100644
--- a/src/gallium/auxiliary/util/u_mempool.c
+++ b/src/gallium/auxiliary/util/u_mempool.c
@@ -69,6 +69,7 @@ static void util_mempool_add_new_page(struct util_mempool *pool)
block = util_mempool_get_block(pool, page, pool->num_blocks-1);
block->next_free = pool->first_free;
+ block->magic = UTIL_MEMPOOL_MAGIC;
pool->first_free = util_mempool_get_block(pool, page, 0);
pool->num_pages++;