From: Wilfried Göesgens Date: Fri, 7 Nov 2008 00:10:48 +0000 (+0000) Subject: * fix pointer magic X-Git-Tag: v7.86~1810 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=26746359e437c24de07b1eb79202e9ed420ef53c * fix pointer magic --- 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. } }