Fully initialize the newly-created parse node. bug 352271, r=brendan

This commit is contained in:
mrbkap%gmail.com 2006-09-12 04:59:58 +00:00
parent 60d105a0c2
commit 276b585a76

View File

@ -4251,6 +4251,9 @@ MemberExpr(JSContext *cx, JSTokenStream *ts, JSTreeContext *tc,
pn2->pn_arity = PN_UNARY;
pn2->pn_kid = pn;
pn2->pn_next = NULL;
#if JS_HAS_XML_SUPPORT
pn2->pn_ts = ts;
#endif
pn = pn2;
}
}