From 89406b8ce58376969b5f11c4f88d77eb15d3b7d2 Mon Sep 17 00:00:00 2001 From: Wilfried Goesgens Date: Sun, 5 Aug 2012 15:22:58 +0200 Subject: [PATCH] scancpp points out we need to initialize this var before using it in all cases. --- webcit/messages.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webcit/messages.c b/webcit/messages.c index 4a8a3d691..e891539ce 100644 --- a/webcit/messages.c +++ b/webcit/messages.c @@ -325,7 +325,7 @@ HttpStatus(long CitadelStatus) */ void handle_one_message(void) { - long CitStatus; + long CitStatus = ERROR + NOT_HERE; int CopyMessage = 0; const StrBuf *Destination; void *vLine; -- 2.30.2