scancpp points out we need to initialize this var before using it in all cases.
authorWilfried Goesgens <dothebart@citadel.org>
Sun, 5 Aug 2012 13:22:58 +0000 (15:22 +0200)
committerWilfried Goesgens <dothebart@citadel.org>
Sun, 5 Aug 2012 13:22:58 +0000 (15:22 +0200)
webcit/messages.c

index 4a8a3d69167cab90a05383d8f893096ad0fb4f97..e891539ce500dbf4e6da49da42bc55f65f38318e 100644 (file)
@@ -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;