From 843b797533c440ba030171debb998f7a8721f963 Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Sat, 22 Dec 2012 10:51:30 +0000 Subject: [PATCH 1/1] [PSEH3] Fix a typo, add a comment svn path=/trunk/; revision=57967 --- reactos/lib/pseh/i386/pseh3.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; -- 2.17.1