فهرست منبع

core: hle: kernel: k_thread: Ensure host Fiber is freed.

bunnei 4 سال پیش
والد
کامیت
4a28d8cebb
1فایلهای تغییر یافته به همراه3 افزوده شده و 0 حذف شده
  1. 3 0
      src/core/hle/kernel/k_thread.cpp

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

@@ -326,6 +326,9 @@ void KThread::Finalize() {
         }
     }
 
+    // Release host emulation members.
+    host_context.reset();
+
     // Perform inherited finalization.
     KSynchronizationObject::Finalize();
 }