Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit f6ec81d

Browse filesBrowse files
theanarkhtargos
authored andcommitted
inspector: fix session.disconnect crash
PR-URL: #46942 Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
1 parent a5ebc89 commit f6ec81d
Copy full SHA for f6ec81d

File tree

Expand file treeCollapse file tree

2 files changed

+23
-1
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

2 files changed

+23
-1
lines changed
Open diff view settings
Collapse file

‎src/inspector_js_api.cc‎

Copy file name to clipboardExpand all lines: src/inspector_js_api.cc
+3-1Lines changed: 3 additions & 1 deletion
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) {
Collapse file
+20Lines changed: 20 additions & 0 deletions
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.