From: Mathieu Desnoyers Date: Sat, 11 Feb 2023 01:29:39 +0000 (-0500) Subject: Fix: rculfhash: urcu_die() takes positive error value X-Git-Tag: v0.14.0~2 X-Git-Url: https://git.liburcu.org/?p=userspace-rcu.git;a=commitdiff_plain;h=a51018daec6f563f9e74d37747c09d4f10ed7958 Fix: rculfhash: urcu_die() takes positive error value Found by Coverity: ** CID 1504537: Error handling issues (NEGATIVE_RETURNS) /src/rculfhash.c: 1934 in do_auto_resize_destroy_cb() Signed-off-by: Mathieu Desnoyers Change-Id: I6c130fc18fc36da8d0ed13188cc9415e7ee6104b --- diff --git a/src/rculfhash.c b/src/rculfhash.c index 37fbc1b..b456415 100644 --- a/src/rculfhash.c +++ b/src/rculfhash.c @@ -1931,7 +1931,7 @@ void do_auto_resize_destroy_cb(struct urcu_work *work) ht->flavor->register_thread(); ret = cds_lfht_delete_bucket(ht); if (ret) - urcu_die(ret); + urcu_die(-ret); free_split_items_count(ht); ret = pthread_mutex_destroy(&ht->resize_mutex); if (ret)