mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-14 10:43:24 +00:00
Fixed accidentally trying to trace recursive argc!=nargs which is not yet supported (bug 519999, r=brendan).
This commit is contained in:
parent
24c2c671ea
commit
8f7f08e579
@ -9648,6 +9648,8 @@ IsTraceableRecursion(JSContext *cx)
|
||||
return false;
|
||||
if (down->argc != fp->argc)
|
||||
return false;
|
||||
if (fp->argc != fp->fun->nargs)
|
||||
return false;
|
||||
if (fp->imacpc || down->imacpc)
|
||||
return false;
|
||||
if ((fp->flags & JSFRAME_CONSTRUCTING) || (down->flags & JSFRAME_CONSTRUCTING))
|
||||
|
Loading…
Reference in New Issue
Block a user