From: Sree Harsha Totakura Date: Thu, 28 Nov 2013 14:13:31 +0000 (+0000) Subject: - fix X-Git-Tag: initial-import-from-subversion-38251~5895 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=1204c38d49ded7e484d6e7336e7c970fb6e3d92d;p=oweals%2Fgnunet.git - fix --- 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;