Author: fireball Date: Sun Nov 11 13:03:12 2007 New Revision: 30353
URL: http://svn.reactos.org/svn/reactos?rev=30353&view=rev Log: - Fix two more typos, now exception handling doesn't lead to an infinite loop resulting in a stack overflow and thus unhandled exception being caught by ntoskrnl.
Modified: trunk/reactos/lib/sdk/crt/except_nt/i386/seh.s
Modified: trunk/reactos/lib/sdk/crt/except_nt/i386/seh.s URL: http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/except_nt/i386/... ============================================================================== --- trunk/reactos/lib/sdk/crt/except_nt/i386/seh.s (original) +++ trunk/reactos/lib/sdk/crt/except_nt/i386/seh.s Sun Nov 11 13:03:12 2007 @@ -209,7 +209,7 @@
/* Get the try level and scope table */ mov esi, [ebx+12] - mov esi, [ebx+8] + mov edi, [ebx+8]
except_loop2: /* Validate try level */ @@ -331,7 +331,7 @@
/* Get the try level and scope table */ mov esi, [ebx+12] - mov esi, [ebx+8] + mov edi, [ebx+8]
/* FIXME: Validate the SEH exception */