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
commit 140905df8d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;