瀏覽代碼

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