| Index: Source/bindings/v8/V8AbstractEventListener.cpp
|
| diff --git a/Source/bindings/v8/V8AbstractEventListener.cpp b/Source/bindings/v8/V8AbstractEventListener.cpp
|
| index e6937c99d53f9f2caf60cd433dde6f810d0f6471..ee19f7c9f6f27742637b9f4175a97bb45123f107 100644
|
| --- a/Source/bindings/v8/V8AbstractEventListener.cpp
|
| +++ b/Source/bindings/v8/V8AbstractEventListener.cpp
|
| @@ -181,7 +181,7 @@ v8::Local<v8::Object> V8AbstractEventListener::getReceiverObject(ScriptExecution
|
| v8::Handle<v8::Value> value = toV8(target, v8::Handle<v8::Object>(), isolate);
|
| if (value.IsEmpty())
|
| return v8::Local<v8::Object>();
|
| - return v8::Local<v8::Object>::New(v8::Handle<v8::Object>::Cast(value));
|
| + return v8::Local<v8::Object>::New(isolate, v8::Handle<v8::Object>::Cast(value));
|
| }
|
|
|
| void V8AbstractEventListener::makeWeakCallback(v8::Isolate*, v8::Persistent<v8::Object>*, V8AbstractEventListener* listener)
|
|
|