From: Wilfried Göesgens Date: Mon, 9 Feb 2009 11:15:43 +0000 (+0000) Subject: * null that strbuf on definition X-Git-Tag: v7.86~1476 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=32b4bc09a0a6a7107aa739478bb227295f1bcb49 * null that strbuf on definition --- diff --git a/webcit/html2html.c b/webcit/html2html.c index 9b57db582..ee9f705d5 100644 --- a/webcit/html2html.c +++ b/webcit/html2html.c @@ -100,7 +100,7 @@ void output_html(const char *supplied_charset, int treat_as_wiki, int msgnum, St int i; int linklen; char charset[128]; - StrBuf *BodyArea; + StrBuf *BodyArea = NULL; #ifdef HAVE_ICONV iconv_t ic = (iconv_t)(-1) ; char *ibuf; /**< Buffer of characters to be converted */