From 101bedd1972e7da0ea00dff207a73fcb24e45d16 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Wilfried=20G=C3=B6esgens?= Date: Mon, 9 Feb 2009 09:15:02 +0000 Subject: [PATCH] * free our buffer... --- webcit/html2html.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/webcit/html2html.c b/webcit/html2html.c index 12cd1b198..9b57db582 100644 --- a/webcit/html2html.c +++ b/webcit/html2html.c @@ -514,8 +514,10 @@ void output_html(const char *supplied_charset, int treat_as_wiki, int msgnum, St } if (!strncasecmp(ptr, "", 3)) --alevel; } - if (BodyArea != NULL) + if (BodyArea != NULL) { StrBufAppendBufPlain(converted_msg, HKEY(""), 0); + FreeStrBuf(&BodyArea); + } /** uncomment these two lines to override conversion */ /** memcpy(converted_msg, msg, content_length); */ -- 2.30.2