| Index: src/bootstrapper.cc
|
| diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc
|
| index 08007146baf549fc8ca0a4d3520614c3bd2b039d..eb7a4ce98a4ad3c1213f81c0e67a69a5070fb0c2 100644
|
| --- a/src/bootstrapper.cc
|
| +++ b/src/bootstrapper.cc
|
| @@ -1253,8 +1253,7 @@ bool Genesis::CompileScriptCached(Vector<const char> name,
|
| ? top_context->builtins()
|
| : top_context->global());
|
| bool has_pending_exception;
|
| - Handle<Object> result =
|
| - Execution::Call(fun, receiver, 0, NULL, &has_pending_exception);
|
| + Execution::Call(fun, receiver, 0, NULL, &has_pending_exception);
|
| if (has_pending_exception) return false;
|
| return true;
|
| }
|
|
|