未验证 提交 f4ef7844 编写于 作者: A Alex Dima

Fixes #130072: Unset the env variable `DEBUG`

上级 8e4b6f87
......@@ -233,6 +233,10 @@ export class LocalProcessExtensionHost implements IExtensionHost {
VSCODE_LOG_LEVEL: this._environmentService.verbose ? 'trace' : this._environmentService.log
});
// Unset `DEBUG`, as an invalid value might lead to extension host crashes
// See https://github.com/microsoft/vscode/issues/130072
delete env['DEBUG'];
if (platform.isMacintosh) {
// Unset `DYLD_LIBRARY_PATH`, as it leads to extension host crashes
// See https://github.com/microsoft/vscode/issues/104525
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册