Browse Source

Merge pull request #7603 from ameerj/here-we-go-again

kernel: Manually destroy the current process during shut down
pull/15/merge
bunnei 4 years ago
committed by GitHub
parent
commit
eb4ea7e5c7
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      src/core/hle/kernel/kernel.cpp

5
src/core/hle/kernel/kernel.cpp

@ -182,7 +182,10 @@ struct KernelCore::Impl {
// Shutdown all processes.
if (current_process) {
current_process->Finalize();
current_process->Close();
// current_process->Close();
// TODO: The current process should be destroyed based on accurate ref counting after
// calling Close(). Adding a manual Destroy() call instead to avoid a memory leak.
current_process->Destroy();
current_process = nullptr;
}

Loading…
Cancel
Save