Index: src/objects.cc |
diff --git a/src/objects.cc b/src/objects.cc |
index a6b3edef56f8953d69dbf16602ad6a03bedee366..2876f4b9d685d5cc076ab3669729eed0992ec30f 100644 |
--- a/src/objects.cc |
+++ b/src/objects.cc |
@@ -8647,7 +8647,7 @@ Maybe<bool> JSProxy::OwnPropertyKeys(Isolate* isolate, |
return accumulator->AddKeysFromProxy(proxy, trap_result); |
} |
// 16. Let uncheckedResultKeys be a new List which is a copy of trapResult. |
- Zone set_zone; |
+ Zone set_zone(isolate->allocator()); |
const int kPresent = 1; |
const int kGone = 0; |
IdentityMap<int> unchecked_result_keys(isolate->heap(), &set_zone); |