From 567d755011a9f52f13c53d27842150fd9564da7a Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Wed, 30 Sep 2009 09:23:39 -0400 Subject: [PATCH] urcu-ht: fix mistake in previous commit Signed-off-by: Mathieu Desnoyers --- urcu-ht.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/urcu-ht.c b/urcu-ht.c index a26878f..324ebed 100644 --- a/urcu-ht.c +++ b/urcu-ht.c @@ -177,8 +177,8 @@ end: */ rcu_read_unlock(); - data = node->data; - call_rcu(free, node); + data = del_node->data; + call_rcu(free, del_node); return data; error: -- 2.34.1