| Index: Source/bindings/core/v8/V8ThrowException.cpp
|
| diff --git a/Source/bindings/core/v8/V8ThrowException.cpp b/Source/bindings/core/v8/V8ThrowException.cpp
|
| index 060ab6b784f6121f0c58c296cd40913009f77dc3..bc8866b0984c81d1d31ae2c1f8dbfdb1132137bd 100644
|
| --- a/Source/bindings/core/v8/V8ThrowException.cpp
|
| +++ b/Source/bindings/core/v8/V8ThrowException.cpp
|
| @@ -63,7 +63,7 @@ v8::Handle<v8::Value> V8ThrowException::createDOMException(v8::Isolate* isolate,
|
| return V8ThrowException::createReferenceError(isolate, sanitizedMessage);
|
|
|
| RefPtrWillBeRawPtr<DOMException> domException = DOMException::create(ec, sanitizedMessage, unsanitizedMessage);
|
| - v8::Handle<v8::Value> exception = toV8(domException, creationContext, isolate);
|
| + v8::Handle<v8::Value> exception = toV8(domException.get(), creationContext, isolate);
|
|
|
| if (exception.IsEmpty())
|
| return v8Undefined();
|
|
|