提交 e574d62f 编写于 作者: M Matt Bierner

Fix potential npe

上级 7d359986
......@@ -229,7 +229,9 @@ export class Client implements IChannelClient, IDisposable {
console.warn('IPC "' + this.options.serverName + '" crashed with exit code ' + code + ' and signal ' + signal);
}
this.disposeDelayer.cancel();
if (this.disposeDelayer) {
this.disposeDelayer.cancel();
}
this.disposeClient();
this._onDidProcessExit.fire({ code, signal });
});
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册