Index: src/isolate.cc |
diff --git a/src/isolate.cc b/src/isolate.cc |
index 346ece86feb79dc53b1e8fa71dd5b955adafdc97..7b77d893f15451738d6ecada03a7eafa7ca600de 100644 |
--- a/src/isolate.cc |
+++ b/src/isolate.cc |
@@ -1774,6 +1774,7 @@ Isolate::Isolate() |
inner_pointer_to_code_cache_(NULL), |
write_iterator_(NULL), |
global_handles_(NULL), |
+ eternal_handles_(NULL), |
context_switcher_(NULL), |
thread_manager_(NULL), |
fp_stubs_generated_(false), |
@@ -2051,6 +2052,8 @@ Isolate::~Isolate() { |
code_range_ = NULL; |
delete global_handles_; |
global_handles_ = NULL; |
+ delete eternal_handles_; |
+ eternal_handles_ = NULL; |
delete string_stream_debug_object_cache_; |
string_stream_debug_object_cache_ = NULL; |
@@ -2182,6 +2185,7 @@ bool Isolate::Init(Deserializer* des) { |
inner_pointer_to_code_cache_ = new InnerPointerToCodeCache(this); |
write_iterator_ = new ConsStringIteratorOp(); |
global_handles_ = new GlobalHandles(this); |
+ eternal_handles_ = new EternalHandles(); |
bootstrapper_ = new Bootstrapper(this); |
handle_scope_implementer_ = new HandleScopeImplementer(this); |
stub_cache_ = new StubCache(this); |