From 719abc348ee76436439a16bcaccce317c12d3435 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Wilfried=20G=C3=B6esgens?= Date: Sat, 27 Sep 2008 16:21:35 +0000 Subject: [PATCH] * free the StrBuf apropriate. --- webcit/html2html.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.30.2