Index: src/bootstrapper.cc |
diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc |
index b7991d38bf737f7f575238d53581ce09af39e88a..92ff269535209235ce9f05d42acdc4e9b11655de 100644 |
--- a/src/bootstrapper.cc |
+++ b/src/bootstrapper.cc |
@@ -1552,7 +1552,7 @@ bool Genesis::CompileScriptCached(Isolate* isolate, |
: top_context->global_object(), |
isolate); |
bool has_pending_exception; |
- Execution::Call(fun, receiver, 0, NULL, &has_pending_exception); |
+ Execution::Call(isolate, fun, receiver, 0, NULL, &has_pending_exception); |
if (has_pending_exception) return false; |
return true; |
} |