From 527152aa5c809911a64cb684144c66b53d21ea32 Mon Sep 17 00:00:00 2001 From: "svenpanne@chromium.org" Date: Tue, 10 Sep 2013 11:32:15 +0000 Subject: [PATCH] Initialize forgotten Isolate member. R=bmeurer@chromium.org Review URL: https://codereview.chromium.org/23769008 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@16613 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/isolate.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/isolate.cc b/src/isolate.cc index 3a2084a..8e58135 100644 --- a/src/isolate.cc +++ b/src/isolate.cc @@ -1776,6 +1776,7 @@ Isolate::Isolate() // TODO(bmeurer) Initialized lazily because it depends on flags; can // be fixed once the default isolate cleanup is done. random_number_generator_(NULL), + is_memory_constrained_(false), has_fatal_error_(false), use_crankshaft_(true), initialized_from_snapshot_(false), -- 2.7.4