Merge pull request #51024 from Chaosus/clear_processes_ids

Clear debug process identifiers array at `stop()` to prevent invalid checking of them
This commit is contained in:
Rémi Verschelde
2021-07-29 18:39:49 +02:00
committed by GitHub

View File

@@ -270,6 +270,7 @@ void EditorRun::stop() {
for (const OS::ProcessID &E : pids) {
OS::get_singleton()->kill(E);
}
pids.clear();
}
status = STATUS_STOP;