Index: src/bootstrapper.cc |
diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc |
index 0d63ce4e481802336f21fb6d9c6021a80a32bd1c..ffa5283077cf51c7b33d6f85901452315df2070c 100644 |
--- a/src/bootstrapper.cc |
+++ b/src/bootstrapper.cc |
@@ -1240,9 +1240,8 @@ bool Genesis::InitializeGlobal(Handle<GlobalObject> inner_global, |
// Initialize the out of memory slot. |
native_context()->set_out_of_memory(heap->false_value()); |
- // Initialize the embedder data slot. |
- Handle<FixedArray> embedder_data = factory->NewFixedArray(2); |
- native_context()->set_embedder_data(*embedder_data); |
+ // Initialize the data slot. |
+ native_context()->set_data(heap->undefined_value()); |
{ |
// Initialize the random seed slot. |