mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
varobj is not passed through the chain. Make sure to use global->varobj for gvar access.
This commit is contained in:
parent
ff827bd70c
commit
1a2aead6ae
@ -1102,7 +1102,7 @@ jsval&
|
||||
TraceRecorder::gvarval(unsigned n) const
|
||||
{
|
||||
JS_ASSERT(n < STOBJ_NSLOTS(global->varobj));
|
||||
return STOBJ_GET_SLOT(cx->fp->varobj, n);
|
||||
return STOBJ_GET_SLOT(global->varobj, n);
|
||||
}
|
||||
|
||||
jsval&
|
||||
|
Loading…
Reference in New Issue
Block a user