From: Wilfried Goesgens Date: Fri, 19 Aug 2011 17:17:31 +0000 (+0000) Subject: add missing var definition *ups* X-Git-Tag: v8.01~70 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=5671cc812085936656f964fa2c3920a3c250362b add missing var definition *ups* --- diff --git a/libcitadel/lib/stringbuf.c b/libcitadel/lib/stringbuf.c index 02b715397..273c09ecb 100644 --- a/libcitadel/lib/stringbuf.c +++ b/libcitadel/lib/stringbuf.c @@ -2141,6 +2141,7 @@ long StrECMAEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn) const char *aptr, *eiptr; char *bptr, *eptr; long len; + int IsUtf8Sequence; if (((Source == NULL) && (PlainIn == NULL)) || (Target == NULL) ) return -1;