Closed
Bug 673097
Opened 13 years ago
Closed 13 years ago
crash in STRING_TO_JSVAL_IMPL()
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 589735
People
(Reporter: stransky, Unassigned)
Details
Firefox crashes at start on ia64 arch.
625 STRING_TO_JSVAL_IMPL(JSString *str)
626 {
627 jsval_layout l;
628 uint64 strBits = (uint64)str;
629 JS_ASSERT(str);
630 JS_ASSERT((strBits >> JSVAL_TAG_SHIFT) == 0); <<< here
631 l.asBits = strBits | JSVAL_SHIFTED_TAG_STRING;
632 return l;
633 }
(gdb) p str
$3 = (JSString *) 0x2000000014201700
I guess the upper 16bits should be 0 which is not accomplished here.
Updated•13 years ago
|
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•