diff options
Diffstat (limited to 'src/3rdparty')
-rw-r--r-- | src/3rdparty/webkit/JavaScriptCore/runtime/ConstructData.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdparty/webkit/JavaScriptCore/runtime/ConstructData.cpp b/src/3rdparty/webkit/JavaScriptCore/runtime/ConstructData.cpp index 2d98013..c3b2eeb 100644 --- a/src/3rdparty/webkit/JavaScriptCore/runtime/ConstructData.cpp +++ b/src/3rdparty/webkit/JavaScriptCore/runtime/ConstructData.cpp @@ -68,7 +68,7 @@ JSObject* construct(ExecState* exec, JSValue callee, ConstructType constructType interp->registerFile().shrink(oldEnd); return result; #else - return constructData.native.function(exec, asObject(object), args); + return constructData.native.function(exec, asObject(callee), args); #endif } ASSERT(constructType == ConstructTypeJS); |