소스 검색

hle: kernel: k_process: Close the handle table on shutdown.

bunnei 5 년 전
부모
커밋
b119363fc2
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      src/core/hle/kernel/k_process.cpp

+ 3 - 0
src/core/hle/kernel/k_process.cpp

@@ -409,6 +409,9 @@ void KProcess::Finalize() {
         resource_limit->Close();
     }
 
+    // Finalize the handle table and close any open handles.
+    handle_table.Finalize();
+
     // Perform inherited finalization.
     KAutoObjectWithSlabHeapAndContainer<KProcess, KSynchronizationObject>::Finalize();
 }