提交 cd8d86b6 编写于 作者: D Daniel Imms

Prevent possible NPE

上级 c5c7d43b
......@@ -330,7 +330,9 @@ export class ExtHostTerminalService implements ExtHostTerminalServiceShape {
// Retry one more time in case the terminal has not yet been initialized.
setTimeout(() => {
terminal = this._getTerminalById(id);
terminal._setProcessId(processId);
if (terminal) {
terminal._setProcessId(processId);
}
}, EXT_HOST_CREATION_DELAY);
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册