Closed
Bug 422881
Opened 17 years ago
Closed 7 years ago
JS_Assert in jsdb_PointerToNewHandleVal
Categories
(Other Applications Graveyard :: Venkman JS Debugger, defect)
Tracking
(Not tracked)
RESOLVED
INCOMPLETE
People
(Reporter: timeless, Assigned: timeless)
Details
jsdb asserts that JS_NewObject can't fail in jsdb_PointerToNewHandleVal
this is unfortunate, because it can.
js> (function (a,l) {(function z(a,l) {z(a[l]={},l)})(a)})(a={},'f')
............................
msg = script stack space quota is exhausted
filename = typein
lineno = 1
lineBuf = null
tokenOffset = null
............................
[E]at [i]gnore [p]ass along [d]ebug ?d
Assertion failure: 0, at jsdrefl.c:248
if(!(obj = JS_NewObject(cx, &jsdb_HandleClass, NULL, NULL)) ||
!JS_SetPrivate(cx, obj, p))
{
JS_ASSERT(0);
return JSVAL_NULL;
JS_Assert
jsdb_PointerToNewHandleVal
GetScriptForStackFrame
js_Invoke
Comment 1•7 years ago
|
||
Component is obsolete so resolving bugs as INCOMPLETE
Status: NEW → RESOLVED
Closed: 7 years ago
Resolution: --- → INCOMPLETE
Updated•7 years ago
|
Product: Other Applications → Other Applications Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•