Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit eefabde

Browse files
committedMar 14, 2023
inspector: fix session.disconnect crash
1 parent 733ef4e commit eefabde

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)
Please sign in to comment.