From: Art Cancro Date: Mon, 13 Sep 2010 16:13:50 +0000 (-0400) Subject: Don't free the room list hash at the end of the site map operation. X-Git-Tag: v8.01~718 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=dcd75424640051cc4f4bfb91da10c4cdabc120de Don't free the room list hash at the end of the site map operation. It will be freed when the session closes. --- diff --git a/webcit/sitemap.c b/webcit/sitemap.c index 0bc394b98..306979571 100644 --- a/webcit/sitemap.c +++ b/webcit/sitemap.c @@ -87,7 +87,7 @@ void sitemap(void) { } DeleteHashPos(&it); - DeleteHash(&roomlist); + /* DeleteHash(&roomlist); This will be freed when the session closes */ wc_printf("\r\n"); wDumpContent(0);