From dcd75424640051cc4f4bfb91da10c4cdabc120de Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Mon, 13 Sep 2010 12:13:50 -0400 Subject: [PATCH] Don't free the room list hash at the end of the site map operation. It will be freed when the session closes. --- webcit/sitemap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.30.2