urcu-ht: fix mistake in previous commit
authorMathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Wed, 30 Sep 2009 13:23:39 +0000 (09:23 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Wed, 30 Sep 2009 13:23:39 +0000 (09:23 -0400)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
urcu-ht.c

index a26878fd347ccf22294509960fcf95a6cc67f1d3..324ebed93420dd7957ffd03963aae07340e5001a 100644 (file)
--- 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:
This page took 0.026358 seconds and 4 git commands to generate.