| Index: Source/bindings/v8/V8Binding.cpp
|
| diff --git a/Source/bindings/v8/V8Binding.cpp b/Source/bindings/v8/V8Binding.cpp
|
| index 79cdd6318674f807eb6dec4ae9b111762ce47d07..5c7c273d2d651b28d64782b9b85e480a72f3bebd 100644
|
| --- a/Source/bindings/v8/V8Binding.cpp
|
| +++ b/Source/bindings/v8/V8Binding.cpp
|
| @@ -539,9 +539,9 @@ bool handleOutOfMemory()
|
| return true;
|
| }
|
|
|
| -v8::Local<v8::Value> handleMaxRecursionDepthExceeded()
|
| +v8::Local<v8::Value> handleMaxRecursionDepthExceeded(v8::Isolate* isolate)
|
| {
|
| - throwError(v8RangeError, "Maximum call stack size exceeded.", v8::Isolate::GetCurrent());
|
| + throwError(v8RangeError, "Maximum call stack size exceeded.", isolate);
|
| return v8::Local<v8::Value>();
|
| }
|
|
|
|
|