From 31487d29e3a8a09ffe7ec7a0f72dac7bf16c6bfb Mon Sep 17 00:00:00 2001 From: "jkummerow@chromium.org" Date: Fri, 1 Jul 2011 11:04:36 +0000 Subject: [PATCH] Add missing HandleScope Review URL: http://codereview.chromium.org/7210056 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@8509 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/ic.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ic.cc b/src/ic.cc index 7311ee2..eb0f12a 100644 --- a/src/ic.cc +++ b/src/ic.cc @@ -1816,6 +1816,7 @@ MaybeObject* KeyedStoreIC::Store(State state, stub = non_strict_arguments_stub(); } else if (!force_generic) { if (key->IsSmi() && (target() != non_strict_arguments_stub())) { + HandleScope scope(isolate()); MaybeObject* maybe_stub = ComputeStub(receiver, true, strict_mode, -- 2.7.4