From: Wilfried Goesgens Date: Sun, 5 Aug 2012 13:22:58 +0000 (+0200) Subject: scancpp points out we need to initialize this var before using it in all cases. X-Git-Tag: v8.20~269 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=89406b8ce58376969b5f11c4f88d77eb15d3b7d2 scancpp points out we need to initialize this var before using it in all cases. --- 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;