Skip to content

Commit e2c9040

Browse files
committedMar 12, 2015
src: do not leak handles on debug and exit
Ensure HandleScope is created before creating any new handles (which `Context::Scope` and `Environment::GetCurrent` does). PR-URL: #1133 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Rod Vagg <rod@vagg.org> Reviewed-By: Brian White <mscdex@mscdex.net>
1 parent 8c4f0df commit e2c9040

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎src/node.cc

+2-1
Original file line numberDiff line numberDiff line change
@@ -3195,6 +3195,7 @@ static void DispatchDebugMessagesAsyncCallback(uv_async_t* handle) {
31953195
if (debugger_running == false) {
31963196
fprintf(stderr, "Starting debugger agent.\n");
31973197

3198+
HandleScope scope(node_isolate);
31983199
Environment* env = Environment::GetCurrent(node_isolate);
31993200
Context::Scope context_scope(env->context());
32003201

@@ -3603,8 +3604,8 @@ void AtExit(void (*cb)(void* arg), void* arg) {
36033604

36043605

36053606
void EmitBeforeExit(Environment* env) {
3606-
Context::Scope context_scope(env->context());
36073607
HandleScope handle_scope(env->isolate());
3608+
Context::Scope context_scope(env->context());
36083609
Local<Object> process_object = env->process_object();
36093610
Local<String> exit_code = FIXED_ONE_BYTE_STRING(env->isolate(), "exitCode");
36103611
Local<Value> args[] = {

0 commit comments

Comments
 (0)
Please sign in to comment.