From fed709bfb1471e55dde76fc47eb0f16b7aff414a Mon Sep 17 00:00:00 2001 From: "brendan%mozilla.org" Date: Wed, 18 Oct 2000 16:00:39 +0000 Subject: [PATCH] Fix cx-for-acx typo-blunder (57070, r=mccabe, a=jband). git-svn-id: svn://10.0.0.236/trunk@81380 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/js/src/jsgc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/js/src/jsgc.c b/mozilla/js/src/jsgc.c index b2f6679e902..95a21f95357 100644 --- a/mozilla/js/src/jsgc.c +++ b/mozilla/js/src/jsgc.c @@ -1165,7 +1165,7 @@ restart: GC_MARK(cx, JSVAL_TO_GCTHING(acx->rval2), "rval2", NULL); #endif - for (sh = cx->stackHeaders; sh; sh = sh->down) { + for (sh = acx->stackHeaders; sh; sh = sh->down) { METER(rt->gcStats.stackseg++); METER(rt->gcStats.segslots += sh->nslots); GC_MARK_JSVALS(cx, sh->nslots, JS_STACK_SEGMENT(sh), "stack");