summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel')
-rw-r--r--src/core/hle/kernel/k_process.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/kernel/k_process.cpp b/src/core/hle/kernel/k_process.cpp
index c309ae563..87171b1c8 100644
--- a/src/core/hle/kernel/k_process.cpp
+++ b/src/core/hle/kernel/k_process.cpp
@@ -409,6 +409,9 @@ void KProcess::Finalize() {
409 resource_limit->Close(); 409 resource_limit->Close();
410 } 410 }
411 411
412 // Finalize the handle table and close any open handles.
413 handle_table.Finalize();
414
412 // Perform inherited finalization. 415 // Perform inherited finalization.
413 KAutoObjectWithSlabHeapAndContainer<KProcess, KSynchronizationObject>::Finalize(); 416 KAutoObjectWithSlabHeapAndContainer<KProcess, KSynchronizationObject>::Finalize();
414} 417}