Author: fireball Date: Sat Nov 10 16:02:04 2007 New Revision: 30323
URL: http://svn.reactos.org/svn/reactos?rev=30323&view=rev Log: - Fix a bug. ( jz -> js, a typo)
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 Sat Nov 10 16:02:04 2007 @@ -233,7 +233,7 @@ mov ebx, [ebp+12] or eax, eax jz except_continue2 - jz except_dismiss2 + js except_dismiss2
/* So this is an accept, call the termination handlers */ mov edi, [ebx+8] @@ -365,7 +365,7 @@ mov ebx, [ebp+12] or eax, eax jz except_continue3 - jz except_dismiss3 + js except_dismiss3
/* So this is an accept, call the termination handlers */ mov edi, [ebx+8]