Skip to content

Commit f6ec81d

Browse files
theanarkhtargos
authored andcommitted
inspector: fix session.disconnect crash
PR-URL: #46942 Reviewed-By: Juan José Arboleda <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
1 parent a5ebc89 commit f6ec81d

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

src/inspector_js_api.cc

+3-1
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,11 @@ class JSBindingsConnection : public AsyncWrap {
123123
new JSBindingsConnection(env, info.This(), callback);
124124
}
125125

126+
// See https://github.com/nodejs/node/pull/46942
126127
void Disconnect() {
128+
BaseObjectPtr<JSBindingsConnection> strong_ref{this};
127129
session_.reset();
128-
delete this;
130+
Detach();
129131
}
130132

131133
static void Disconnect(const FunctionCallbackInfo<Value>& info) {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
'use strict';
2+
const common = require('../common');
3+
4+
common.skipIfInspectorDisabled();
5+
6+
const { Session } = require('inspector');
7+
const { Worker, isMainThread, workerData } = require('worker_threads');
8+
9+
if (!workerData) {
10+
common.skipIfWorker();
11+
}
12+
13+
if (isMainThread) {
14+
new Worker(__filename, { workerData: {} });
15+
} else {
16+
const session = new Session();
17+
session.connectToMainThread();
18+
// Do not crash
19+
session.disconnect();
20+
}

0 commit comments

Comments
 (0)