[Mesa-dev] [PATCH] util: remove unused variable
Timothy Arceri
timothy.arceri at collabora.com
Fri Oct 7 10:10:37 UTC 2016
Also initialise page at declaration.
Cc: Nicolai Hähnle <nicolai.haehnle at amd.com>
---
src/util/slab.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/src/util/slab.c b/src/util/slab.c
index cbe4c88..4264814 100644
--- a/src/util/slab.c
+++ b/src/util/slab.c
@@ -174,11 +174,9 @@ void slab_destroy_child(struct slab_child_pool *pool)
static bool
slab_add_new_page(struct slab_child_pool *pool)
{
- struct slab_page_header *page;
- unsigned i;
+ struct slab_page_header *page = malloc(sizeof(struct slab_page_header) +
+ pool->parent->num_elements * pool->parent->element_size);
- page = malloc(sizeof(struct slab_page_header) +
- pool->parent->num_elements * pool->parent->element_size);
if (!page)
return false;
--
2.7.4
More information about the mesa-dev
mailing list