From: Wilfried Göesgens Date: Sat, 27 Sep 2008 16:21:35 +0000 (+0000) Subject: * free the StrBuf apropriate. X-Git-Tag: v7.86~1902 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=719abc348ee76436439a16bcaccce317c12d3435 * free the StrBuf apropriate. --- diff --git a/webcit/html2html.c b/webcit/html2html.c index 609ebe038..9d6e357aa 100644 --- a/webcit/html2html.c +++ b/webcit/html2html.c @@ -454,7 +454,7 @@ BAIL: /** A little trailing vertical whitespace... */ wprintf("

\n"); /** Now give back the memory */ - if (converted_msg != NULL) free(converted_msg); + FreeStrBuf(&converted_msg); if (msg != NULL) free(msg); }