diff options
author | bunnei <bunneidev@gmail.com> | 2021-12-19 02:09:53 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-19 02:09:53 -0800 |
commit | eb4ea7e5c7964c690066af450ba9c14147d4f0ae (patch) | |
tree | 1dbed755682f825426ea17270a0af9a15ef12161 /src | |
parent | 8e33cf1c2bd1e15e33d94524835ba1d39c138afd (diff) | |
parent | 55650c5b756d81054669974a3098aff3114309c0 (diff) |
Merge pull request #7603 from ameerj/here-we-go-again
kernel: Manually destroy the current process during shut down
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/kernel/kernel.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/core/hle/kernel/kernel.cpp b/src/core/hle/kernel/kernel.cpp index 2e4e4cb1c..1225e1fba 100644 --- a/src/core/hle/kernel/kernel.cpp +++ b/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; } |