| Index: src/api.cc
|
| diff --git a/src/api.cc b/src/api.cc
|
| index a055a2f049b7c287620992e08f62aef15fc43c05..04614c5373d93df77bcffa462ca08f2acc6c10f1 100644
|
| --- a/src/api.cc
|
| +++ b/src/api.cc
|
| @@ -3178,7 +3178,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), isolate);
|
| + i::Handle<i::Object> result = i::Object::GetPrototype(isolate, self);
|
| return Utils::ToLocal(result);
|
| }
|
|
|
|
|