diff options
author | bunnei <bunneidev@gmail.com> | 2018-06-26 01:01:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-26 01:01:10 -0400 |
commit | 1da0ee57fd4c3309f119f126822833f65b2255fc (patch) | |
tree | d75c8092945af47a8a5f98b70d89bb1b5b999c96 /src | |
parent | c9e821e93e19d3a11233486b3c62548e9f128b24 (diff) | |
parent | ad39bab2710bd29493ba62aead9e0a72ea1815c4 (diff) |
Merge pull request #589 from mailwl/fix-crash
Fix crash at exit
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/debug_utils/debug_utils.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/video_core/debug_utils/debug_utils.h b/src/video_core/debug_utils/debug_utils.h index bbba8e380..9382a75e5 100644 --- a/src/video_core/debug_utils/debug_utils.h +++ b/src/video_core/debug_utils/debug_utils.h @@ -55,8 +55,10 @@ public: virtual ~BreakPointObserver() { auto context = context_weak.lock(); if (context) { - std::unique_lock<std::mutex> lock(context->breakpoint_mutex); - context->breakpoint_observers.remove(this); + { + std::unique_lock<std::mutex> lock(context->breakpoint_mutex); + context->breakpoint_observers.remove(this); + } // If we are the last observer to be destroyed, tell the debugger context that // it is free to continue. In particular, this is required for a proper yuzu |