From a648090befbd508f01cc6091e5ad962e6ca38ee6 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Tue, 3 Jul 2007 15:10:38 +0000 Subject: [PATCH] In the main readloop(), fixed a that appeared *after* the call to wDumpContent(), which was causing blank screens on IE6 --- webcit/messages.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webcit/messages.c b/webcit/messages.c index ec460d498..27bccfa61 100644 --- a/webcit/messages.c +++ b/webcit/messages.c @@ -2603,8 +2603,8 @@ DONE: } /** Note: wDumpContent() will output one additional tag. */ + wprintf("\n"); /** end of 'content' div */ wDumpContent(1); - if (addrbook != NULL) free(addrbook); /** free the summary */ if (WC->summ != NULL) { @@ -2612,7 +2612,7 @@ DONE: WC->num_summ = 0; WC->summ = NULL; } -wprintf("\n"); /** end of 'content' div */ + if (addrbook != NULL) free(addrbook); } -- 2.39.2