summaryrefslogtreecommitdiff
path: root/source4/lib/ejs/ejsParser.c
diff options
context:
space:
mode:
Diffstat (limited to 'source4/lib/ejs/ejsParser.c')
-rw-r--r--source4/lib/ejs/ejsParser.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source4/lib/ejs/ejsParser.c b/source4/lib/ejs/ejsParser.c
index 57cb569cdb..72b0889c55 100644
--- a/source4/lib/ejs/ejsParser.c
+++ b/source4/lib/ejs/ejsParser.c
@@ -1555,6 +1555,7 @@ static int evalExpr(Ejs *ep, MprVar *lhs, int rel, MprVar *rhs)
if (lhs->type == MPR_TYPE_STRING) {
if (isdigit((int) lhs->string[0])) {
num = mprVarToNumber(lhs);
+ lhs->allocatedVar = 0;
mprDestroyVar(lhs);
*lhs = mprCreateNumberVar(num);
/* Examine further below */
@@ -1564,6 +1565,7 @@ static int evalExpr(Ejs *ep, MprVar *lhs, int rel, MprVar *rhs)
* Convert the RHS to a string
*/
mprVarToString(&str, MPR_MAX_STRING, 0, rhs);
+ rhs->allocatedVar = 0;
mprDestroyVar(rhs);
*rhs = mprCreateStringVar(str, 1);
mprFree(str);