From 0ad062c8a2b34b76cfb3863b6e85be30960cc3a5 Mon Sep 17 00:00:00 2001 From: Aleksey Bragin Date: Sun, 11 Nov 2007 10:03:12 +0000 Subject: [PATCH] - 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. svn path=/trunk/; revision=30353 --- reactos/lib/sdk/crt/except_nt/i386/seh.s | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/lib/sdk/crt/except_nt/i386/seh.s b/reactos/lib/sdk/crt/except_nt/i386/seh.s index 0444b0d4e0a..57cdab5ce2e 100644 --- a/reactos/lib/sdk/crt/except_nt/i386/seh.s +++ b/reactos/lib/sdk/crt/except_nt/i386/seh.s @@ -209,7 +209,7 @@ __except_handler2: /* 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 @@ __except_handler3: /* Get the try level and scope table */ mov esi, [ebx+12] - mov esi, [ebx+8] + mov edi, [ebx+8] /* FIXME: Validate the SEH exception */