mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-10 00:27:05 -06:00
Merge pull request #279172 from SimonSiefke/fix/memory-leak-terminal-process-3
fix: memory leak in terminal process
This commit is contained in:
commit
dcb70268fd
@ -201,6 +201,10 @@ export class TerminalProcess extends Disposable implements ITerminalChildProcess
|
||||
this._titleInterval = undefined;
|
||||
}
|
||||
}));
|
||||
this._register(toDisposable(() => {
|
||||
this._ptyProcess = undefined;
|
||||
this._processStartupComplete = undefined;
|
||||
}));
|
||||
}
|
||||
|
||||
async start(): Promise<ITerminalLaunchError | ITerminalLaunchResult | undefined> {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user