Commit 70caf05b authored by dcarney's avatar dcarney Committed by Commit bot

fix gcmole warning after r25737

TBR=jkummerow@chromium.org

BUG=

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

Cr-Commit-Position: refs/heads/master@{#25744}
parent f6849d9e
......@@ -7022,9 +7022,10 @@ bool AccessorInfo::IsCompatibleReceiver(Object* receiver) {
void ExecutableAccessorInfo::clear_setter() {
set_setter(*GetIsolate()->factory()->NewForeign(
auto foreign = GetIsolate()->factory()->NewForeign(
reinterpret_cast<v8::internal::Address>(
reinterpret_cast<intptr_t>(nullptr))));
reinterpret_cast<intptr_t>(nullptr)));
set_setter(*foreign);
}
......
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