add CloseHandle

This commit is contained in:
FunkyFr3sh 2021-02-11 00:49:36 +01:00
parent 76891cb766
commit a393cd408d

View file

@ -26,6 +26,8 @@ int dbg_exception_handler(EXCEPTION_POINTERS* exception)
0,
0);
if (dmp)
{
MINIDUMP_EXCEPTION_INFORMATION info;
info.ThreadId = GetCurrentThreadId();
info.ExceptionPointers = exception;
@ -40,6 +42,9 @@ int dbg_exception_handler(EXCEPTION_POINTERS* exception)
NULL,
NULL);
CloseHandle(dmp);
}
return EXCEPTION_EXECUTE_HANDLER;
}
#endif