Author: tkreuzer
Date: Sat Dec 22 10:51:30 2012
New Revision: 57967
URL:
http://svn.reactos.org/svn/reactos?rev=57967&view=rev
Log:
[PSEH3]
Fix a typo, add a comment
Modified:
trunk/reactos/lib/pseh/i386/pseh3.c
Modified: trunk/reactos/lib/pseh/i386/pseh3.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/pseh/i386/pseh3.c?rev=…
==============================================================================
--- trunk/reactos/lib/pseh/i386/pseh3.c [iso-8859-1] (original)
+++ trunk/reactos/lib/pseh/i386/pseh3.c [iso-8859-1] Sat Dec 22 10:51:30 2012
@@ -95,6 +95,7 @@
PVOID Filter = Record->ScopeTable->Filter;
LONG Result;
+ /* Check for __finally frames */
if (Record->ScopeTable->Target == NULL)
{
return EXCEPTION_CONTINUE_SEARCH;
@@ -189,7 +190,7 @@
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;