From 968c7b4398ea82f764ced57f1d38606ef4b0c8e6 Mon Sep 17 00:00:00 2001 From: Kazuhiro NISHIYAMA Date: Mon, 29 Jul 2019 23:03:59 +0900 Subject: [PATCH] Fix unused variable --- cont.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cont.c b/cont.c index 286e35dfa5..59a1d8ab39 100644 --- a/cont.c +++ b/cont.c @@ -669,11 +669,11 @@ fiber_pool_stack_release(struct fiber_pool_stack * stack) #ifdef FIBER_POOL_ALLOCATION_FREE struct fiber_pool_allocation * allocation = stack->allocation; - stack->allocation->used -= 1; + allocation->used -= 1; // Release address space and/or dirty memory: - if (stack->allocation->used == 0) { - fiber_pool_allocation_free(stack->allocation); + if (allocation->used == 0) { + fiber_pool_allocation_free(allocation); } else if (stack->pool->free_stacks) { fiber_pool_stack_free(&vacancy->stack);