mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
windows: fix unregistering VEH
This commit is contained in:
parent
305faa73ec
commit
a02a629958
@ -87,9 +87,7 @@ static LONG NTAPI Handler(PEXCEPTION_POINTERS pPtrs)
|
||||
|
||||
void InstallExceptionHandler()
|
||||
{
|
||||
if (s_veh_handle)
|
||||
return;
|
||||
|
||||
ASSERT(!s_veh_handle);
|
||||
s_veh_handle = AddVectoredExceptionHandler(TRUE, Handler);
|
||||
ASSERT(s_veh_handle);
|
||||
}
|
||||
@ -98,6 +96,8 @@ void UninstallExceptionHandler()
|
||||
{
|
||||
ULONG status = RemoveVectoredExceptionHandler(s_veh_handle);
|
||||
ASSERT(status);
|
||||
if (status)
|
||||
s_veh_handle = nullptr;
|
||||
}
|
||||
|
||||
#elif defined(__APPLE__) && !defined(USE_SIGACTION_ON_APPLE)
|
||||
|
Loading…
Reference in New Issue
Block a user