Closed
Bug 785749
Opened 13 years ago
Closed 13 years ago
Assertion failure: v.isString(), at jsbool.cpp:198
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 785576
People
(Reporter: decoder, Unassigned)
Details
(Keywords: assertion, testcase, Whiteboard: [jsbugmon:update,ignore])
The following testcase asserts on mozilla-central revision f077de66e52d (run with -n -m -a):
var UBound = 0;
var status = '';
var statusitems = [];
addThis();
gczeal(2);
var arrUndef = [ , undefined, eval('var x = 0') ];
function addThis()
statusitems[UBound] = status;
UBound++;
try {
for (var i=0; i<UBound; i++)
exitFunc ('test');
} catch(exc1) {}
evaluate('const libdir = "foo"');
evaluate("\
var appendToActual = function(s) {\
gczeal = function() { };\
schedulegc = function() { };\
gcslice = function() { };\
selectforgc = function() { };\
}\
");
evaluate("\
if ( statusitems[i] ) \
var x;\
");
Reporter | ||
Comment 1•13 years ago
|
||
S-s due to gczeal involved. Trying a bisect now, but not sure if this is stable enough.
Whiteboard: [jsbugmon:update,bisect]
Reporter | ||
Updated•13 years ago
|
Whiteboard: [jsbugmon:update,bisect] → [jsbugmon:update]
Reporter | ||
Comment 2•13 years ago
|
||
JSBugMon: Bisection requested, result:
autoBisect shows this is probably related to the following changeset:
The first bad revision is:
changeset: 103141:455ed4a415aa
user: Eric Faust
date: Wed Aug 22 22:05:21 2012 -0700
summary: Bug 781855 - Fix incorrectly shadowing 'own' properties in the case of prototypal setters. (r=bhackett)
Reporter | ||
Updated•13 years ago
|
Whiteboard: [jsbugmon:update] → [jsbugmon:update,ignore]
Reporter | ||
Comment 4•13 years ago
|
||
JSBugMon: The testcase found in this bug no longer reproduces (tried revision 8af2ff9c6018).
Reporter | ||
Updated•13 years ago
|
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → DUPLICATE
Updated•11 years ago
|
Group: core-security
You need to log in
before you can comment on or make changes to this bug.
Description
•