* implement conditional switches; if true will skip to next "X" with the same value.
[citadel.git] / webcit / webserver.c
index 6f8105997d09603880aba78e7eaa95734c678998..3e453db140dce5f554920728323e409327020891 100644 (file)
@@ -619,6 +619,7 @@ int main(int argc, char **argv)
        TemplateCache = NewHash(1, NULL);
        GlobalNS = NewHash(1, NULL);
        Iterators = NewHash(1, NULL);
+       Contitionals = NewHash(1, NULL);
        LoadZoneFiles();
 
 
@@ -951,6 +952,7 @@ void worker_entry(void)
                                DeleteHash(&TemplateCache);
                                DeleteHash(&LocalTemplateCache);
                                DeleteHash(&Iterators);
+                               DeleteHash(&Contitionals);
 #ifdef ENABLE_NLS
                                void ShutdownLocale(void);
 #endif