| Index: src/debug.cc
|
| diff --git a/src/debug.cc b/src/debug.cc
|
| index 5c04efa19d41c2f4f08a12f48aade6802b2b0b49..c025c975b0511edcc66b994ed8bb36276d41726a 100644
|
| --- a/src/debug.cc
|
| +++ b/src/debug.cc
|
| @@ -854,11 +854,12 @@ bool Debug::Load() {
|
|
|
| // Create the debugger context.
|
| HandleScope scope(isolate_);
|
| + ExtensionConfiguration no_extensions;
|
| Handle<Context> context =
|
| isolate_->bootstrapper()->CreateEnvironment(
|
| Handle<Object>::null(),
|
| v8::Handle<ObjectTemplate>(),
|
| - NULL);
|
| + &no_extensions);
|
|
|
| // Fail if no context could be created.
|
| if (context.is_null()) return false;
|
|
|