From: Amos Jeffries Date: Mon, 6 Sep 2010 05:50:51 +0000 (+1200) Subject: Author: Klaus Singvogel X-Git-Tag: take1~290 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c5c926a22afd145b077ed9d4d555b31970375dd5;p=thirdparty%2Fsquid.git Author: Klaus Singvogel Fix uninitialized variable in ESI --- diff --git a/src/esi/Expression.cc b/src/esi/Expression.cc index 8ec3f4fdf9..eb08050ea0 100644 --- a/src/esi/Expression.cc +++ b/src/esi/Expression.cc @@ -707,6 +707,7 @@ getsymbol (const char *s, char const **endptr) rv.eval = NULL; /* A literal */ rv.valuetype = ESI_EXPR_INVALID; rv.valuestored = ESI_LITERAL_INVALID; + rv..precedence = 1; /* A literal */ if (('0' <= *s && *s <= '9') || *s == '-') { size_t length = strspn (s, "0123456789.");