mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
[KERNEL32]: Indentation fix only.
svn path=/trunk/; revision=71402
This commit is contained in:
parent
bf1990897f
commit
642c228981
1 changed files with 16 additions and 16 deletions
|
@ -29,24 +29,24 @@ BasepNotifyCsrOfThread(IN HANDLE ThreadHandle,
|
|||
static
|
||||
LONG BaseThreadExceptionFilter(EXCEPTION_POINTERS * ExceptionInfo)
|
||||
{
|
||||
LONG ExceptionDisposition = EXCEPTION_EXECUTE_HANDLER;
|
||||
LPTOP_LEVEL_EXCEPTION_FILTER RealFilter;
|
||||
RealFilter = RtlDecodePointer(GlobalTopLevelExceptionFilter);
|
||||
LONG ExceptionDisposition = EXCEPTION_EXECUTE_HANDLER;
|
||||
LPTOP_LEVEL_EXCEPTION_FILTER RealFilter;
|
||||
|
||||
if (RealFilter != NULL)
|
||||
{
|
||||
_SEH2_TRY
|
||||
{
|
||||
ExceptionDisposition = RealFilter(ExceptionInfo);
|
||||
}
|
||||
_SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
|
||||
{
|
||||
ExceptionDisposition = UnhandledExceptionFilter(ExceptionInfo);
|
||||
}
|
||||
_SEH2_END;
|
||||
}
|
||||
RealFilter = RtlDecodePointer(GlobalTopLevelExceptionFilter);
|
||||
if (RealFilter != NULL)
|
||||
{
|
||||
_SEH2_TRY
|
||||
{
|
||||
ExceptionDisposition = RealFilter(ExceptionInfo);
|
||||
}
|
||||
_SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
|
||||
{
|
||||
ExceptionDisposition = UnhandledExceptionFilter(ExceptionInfo);
|
||||
}
|
||||
_SEH2_END;
|
||||
}
|
||||
|
||||
return ExceptionDisposition;
|
||||
return ExceptionDisposition;
|
||||
}
|
||||
|
||||
__declspec(noreturn)
|
||||
|
|
Loading…
Reference in a new issue