From: Mathieu Desnoyers Date: Thu, 19 Sep 2019 14:10:31 +0000 (-0400) Subject: Fix: provide errno as argument to urcu_die() X-Git-Tag: v0.12.0~7 X-Git-Url: http://git.liburcu.org/?p=urcu.git;a=commitdiff_plain;h=9fd30396a597942084b007f33cc7f2c279f746e9 Fix: provide errno as argument to urcu_die() commit 1a990de3add "Fix: rculfhash worker needs to unblock to SIGRCU" provides "ret" (-1) as argument to urcu_die(), but should rather provide errno. Reported by Coverity: ** CID 1405700: Error handling issues (NEGATIVE_RETURNS) /src/rculfhash.c: 2171 in cds_lfht_worker_init() Signed-off-by: Mathieu Desnoyers --- diff --git a/src/rculfhash.c b/src/rculfhash.c index 5b3c06b..811d515 100644 --- a/src/rculfhash.c +++ b/src/rculfhash.c @@ -2168,7 +2168,7 @@ static void cds_lfht_worker_init(struct urcu_workqueue *workqueue, urcu_die(errno); ret = sigdelset(&mask, SIGRCU); if (ret) - urcu_die(ret); + urcu_die(errno); ret = pthread_sigmask(SIG_SETMASK, &mask, NULL); if (ret) urcu_die(ret);