mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Hotfix for bug 495563.
This commit is contained in:
parent
1f12d31de5
commit
fd0028e6e9
@ -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");
|
||||
|
Loading…
Reference in New Issue
Block a user