* fix warning by initializing var
authorWilfried Göesgens <willi@citadel.org>
Sun, 4 Oct 2009 22:04:35 +0000 (22:04 +0000)
committerWilfried Göesgens <willi@citadel.org>
Sun, 4 Oct 2009 22:04:35 +0000 (22:04 +0000)
citadel/modules/extnotify/extnotify_main.c

index 387b138c8969c31223387fb356cdde288737ca1d..38cc2e6adb2ec8d99886600e3fe23240cf3fd5c7 100644 (file)
@@ -205,7 +205,7 @@ void do_extnotify_queue(void)
 void process_notify(long NotifyMsgnum, void *usrdata) 
 {
        NotifyContext *Ctx;
-       long msgnum;
+       long msgnum = 0;
        long todelete[1];
        int fnblAllowed;
        int extPagerAllowedHttp;