This commit is contained in:
Andreas Gal 2009-05-29 23:17:50 -07:00
Родитель e20ee11907
Коммит 45aa142470
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -6690,7 +6690,7 @@ TraceRecorder::getThis(LIns*& this_ins)
/*
* js_ComputeThisForFrame updates cx->fp->argv[-1], so sample it into 'original' first.
*/
jsval original = cx->fp->argv[-1];
jsval original = cx->fp->callee ? cx->fp->argv[-1] : JSVAL_NULL;
JSObject* thisObj = js_ComputeThisForFrame(cx, cx->fp);
if (!thisObj)
ABORT_TRACE_ERROR("js_ComputeThisForName failed");