Index: src/bootstrapper.cc |
diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc |
index 85c2a7c1f55b15a14195ea311f5e12da7d8fcbbb..ace134b64572a5c2b15932de2247fd99610e62a4 100644 |
--- a/src/bootstrapper.cc |
+++ b/src/bootstrapper.cc |
@@ -2588,8 +2588,8 @@ Genesis::Genesis(Isolate* isolate, |
: isolate_(isolate), |
active_(isolate->bootstrapper()) { |
result_ = Handle<Context>::null(); |
- // If V8 isn't running and cannot be initialized, just return. |
- if (!V8::IsRunning() && !V8::Initialize(NULL)) return; |
+ // If V8 cannot be initialized, just return. |
+ if (!V8::Initialize(NULL)) return; |
// Before creating the roots we must save the context and restore it |
// on all function exits. |