[ros-diffs] [fireball] 30353: - 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.

fireball at svn.reactos.org fireball at svn.reactos.org
Sun Nov 11 11:03:12 CET 2007


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/seh.s?rev=30353&r1=30352&r2=30353&view=diff
==============================================================================
--- 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 */
 




More information about the Ros-diffs mailing list