In the main readloop(), fixed a </div> that appeared
authorArt Cancro <ajc@citadel.org>
Tue, 3 Jul 2007 15:10:38 +0000 (15:10 +0000)
committerArt Cancro <ajc@citadel.org>
Tue, 3 Jul 2007 15:10:38 +0000 (15:10 +0000)
*after* the call to wDumpContent(), which was causing blank screens on IE6

webcit/messages.c

index ec460d4981f5c2bed1d7ee99744717d1e62cb9ed..27bccfa61027f0395f54b7d98dbf84e43d60d404 100644 (file)
@@ -2603,8 +2603,8 @@ DONE:
        }
 
        /** Note: wDumpContent() will output one additional </div> tag. */
+       wprintf("</div>\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("</div>\n");           /** end of 'content' div */
+       if (addrbook != NULL) free(addrbook);
 }