فهرست منبع

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();
 }