Skip to content

Commit c192175

Browse files
committed
Revert "[WINLOGON] Temporarily hack around a bug in PSEH for GCC"
This reverts commit ddbe971, now that PSEH has been fixed in commit d50b8c9 (PR reactos#8350). CORE-20307 CORE-20309 CORE-20316
1 parent d50b8c9 commit c192175

File tree

1 file changed

+1
-7
lines changed
  • base/system/winlogon

1 file changed

+1
-7
lines changed

base/system/winlogon/sas.c

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -497,13 +497,7 @@ CloseAllConnections(
497497
{
498498
if (!Session->UserToken || !ImpersonateLoggedOnUser(Session->UserToken))
499499
return;
500-
_SEH2_TRY // Temporary HACK to avoid SEH crashes triggered by OutputDebugStringA()
501-
{ // calls from WNetClearConnections(). CORE-20307, CORE-20309, CORE-20316
502-
WNetClearConnections(NULL);
503-
}
504-
_SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
505-
{}
506-
_SEH2_END;
500+
WNetClearConnections(NULL);
507501
RevertToSelf();
508502
}
509503

0 commit comments

Comments
 (0)