From 26746359e437c24de07b1eb79202e9ed420ef53c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Wilfried=20G=C3=B6esgens?= Date: Fri, 7 Nov 2008 00:10:48 +0000 Subject: [PATCH] * fix pointer magic --- webcit/html2html.c | 1 + 1 file changed, 1 insertion(+) diff --git a/webcit/html2html.c b/webcit/html2html.c index cab626d3e..7d3e597ae 100644 --- a/webcit/html2html.c +++ b/webcit/html2html.c @@ -273,6 +273,7 @@ void output_html(const char *supplied_charset, int treat_as_wiki, int msgnum, St StrBufConvert(Source, Buf, &ic); FreeStrBuf(&Buf); iconv_close(ic); + msg = (char*)ChrPtr(Source); //TODO: get rid of this. } } -- 2.30.2