From: Timo Kreuzer Date: Sat, 22 Dec 2012 10:51:30 +0000 (+0000) Subject: [PSEH3] X-Git-Tag: backups/ros-csrss@60644~104^2~65 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=843b797533c440ba030171debb998f7a8721f963;hp=9c783fd0dffa0e0dcebe1637162f808e8189e802;ds=sidebyside [PSEH3] Fix a typo, add a comment svn path=/trunk/; revision=57967 --- diff --git a/reactos/lib/pseh/i386/pseh3.c b/reactos/lib/pseh/i386/pseh3.c index d748594b67c..13e5df1d601 100644 --- a/reactos/lib/pseh/i386/pseh3.c +++ b/reactos/lib/pseh/i386/pseh3.c @@ -95,6 +95,7 @@ _SEH3$_GetFilterResult( PVOID Filter = Record->ScopeTable->Filter; LONG Result; + /* Check for __finally frames */ if (Record->ScopeTable->Target == NULL) { return EXCEPTION_CONTINUE_SEARCH; @@ -189,7 +190,7 @@ _SEH3$_except_handler( asm volatile ("cld\n" : : : "memory"); /* Check if this is an unwind */ - if (ExceptionRecord->ExceptionFlags & EXCEPTION_UNWIND) + if (ExceptionRecord->ExceptionFlags & EXCEPTION_UNWINDING) { /* Unwind all local frames */ TargetFrame = EstablisherFrame->Next;