From 1204c38d49ded7e484d6e7336e7c970fb6e3d92d Mon Sep 17 00:00:00 2001 From: Sree Harsha Totakura Date: Thu, 28 Nov 2013 14:13:31 +0000 Subject: [PATCH] - fix --- src/util/signal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/signal.c b/src/util/signal.c index 92042018f..5cf50e8dc 100644 --- a/src/util/signal.c +++ b/src/util/signal.c @@ -121,7 +121,7 @@ GNUNET_SIGNAL_raise (const int sig) { struct GNUNET_SIGNAL_Context *ctx; - for (ctx = sc_head; NULL != sc_head; ctx = ctx->next) + for (ctx = sc_head; NULL != ctx; ctx = ctx->next) { if (sig != ctx->sig) continue; -- 2.25.1