Index: src/debug.cc |
diff --git a/src/debug.cc b/src/debug.cc |
index 8ec77e77e5b1f231237218d93ff46e71f1148fe2..d8201a1894bf79e6bc064d47b9fefcc585251ba1 100644 |
--- a/src/debug.cc |
+++ b/src/debug.cc |
@@ -835,7 +835,9 @@ bool Debug::Load() { |
// Expose the builtins object in the debugger context. |
Handle<String> key = Factory::LookupAsciiSymbol("builtins"); |
Handle<GlobalObject> global = Handle<GlobalObject>(context->global()); |
- SetProperty(global, key, Handle<Object>(global->builtins()), NONE); |
+ RETURN_IF_EMPTY_HANDLE_VALUE( |
+ SetProperty(global, key, Handle<Object>(global->builtins()), NONE), |
+ false); |
// Compile the JavaScript for the debugger in the debugger context. |
Debugger::set_compiling_natives(true); |