From 2e1756de877df622680b05be421cb27a884db167 Mon Sep 17 00:00:00 2001 From: Alberto Compagno Date: Fri, 24 May 2019 16:33:56 +0200 Subject: [HICN-197] Supporting multiple local faces for the same prefix. Fixed buffer deallocation when data are pushed from the application. Change-Id: Ibc9625e420d0c8579be3d7f1310a08a5e37f765a Signed-off-by: Alberto Compagno --- hicn-plugin/src/hashtb.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'hicn-plugin/src/hashtb.c') diff --git a/hicn-plugin/src/hashtb.c b/hicn-plugin/src/hashtb.c index 0bdb91c0d..5d41b7aa9 100644 --- a/hicn-plugin/src/hashtb.c +++ b/hicn-plugin/src/hashtb.c @@ -485,7 +485,8 @@ loop_buckets: * If we are doing lookup for a data, do not take a * lock in case of a hit with a CS entry */ - bucket->hb_entries[i].locks++; + if (!(*is_cs)) + bucket->hb_entries[i].locks++; *bucket_is_overflow = is_overflow; ret = HICN_ERROR_HASHTB_EXIST; goto done; -- cgit 1.2.3-korg