Commit b263ac33 authored by Toon Verwaest's avatar Toon Verwaest

Fix GCMole issue

BUG=
R=ishell@chromium.org

Review URL: https://codereview.chromium.org/1178883003

Cr-Commit-Position: refs/heads/master@{#28947}
parent 52f44a83
......@@ -4127,7 +4127,8 @@ void JSObject::AddProperty(Handle<JSObject> object, Handle<Name> name,
// static
void ExecutableAccessorInfo::ClearSetter(Handle<ExecutableAccessorInfo> info) {
info->set_setter(*v8::FromCData(info->GetIsolate(), nullptr));
Handle<Object> object = v8::FromCData(info->GetIsolate(), nullptr);
info->set_setter(*object);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment