Index: src/api.cc |
diff --git a/src/api.cc b/src/api.cc |
index 1860e507dde8af857e2ae4f918388608b32bfda6..430524ddeb42fa7cf2aa07734178658a2586b7b5 100644 |
--- a/src/api.cc |
+++ b/src/api.cc |
@@ -2959,7 +2959,7 @@ Local<Value> v8::Object::GetPrototype() { |
return Local<v8::Value>()); |
ENTER_V8(isolate); |
i::Handle<i::Object> self = Utils::OpenHandle(this); |
- i::Handle<i::Object> result(self->GetPrototype(), isolate); |
+ i::Handle<i::Object> result(self->GetPrototype(isolate), isolate); |
return Utils::ToLocal(result); |
} |