mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 503818: update upvar stack arithmetic for jsop_arguments patch, r=gal
This commit is contained in:
parent
09237500b2
commit
3d9684f134
@ -2214,7 +2214,7 @@ struct UpvarVarTraits {
|
||||
}
|
||||
|
||||
static uint32 native_slot(uint32 argc, int32 slot) {
|
||||
return 2 /*callee,this*/ + argc + slot;
|
||||
return 3 /*callee,this,arguments*/ + argc + slot;
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user