The MASM Forum

Projects => MASM32 => Topic started by: dedndave on January 28, 2013, 01:14:20 PM

Title: Comments on Replacement for Iczelion's a2dw algorithm in the MASM32 library.
Post by: dedndave on January 28, 2013, 01:14:20 PM
just noticed something about that code
if you call it with a pointer to a null string...
    mov edx, [esp+4]
    xor ecx, ecx
    movzx eax, BYTE PTR [edx]
    test eax, eax
    jz quit
;
;
  quit:
    lea eax, [ecx]
    ret 4

you probably meant to branch to the RET 4

my bad - it doesn't crash - just noticed it's an LEA   :P
Title: Re: Comments on Replacement for Iczelion's a2dw algorithm in the MASM32 library.
Post by: hutch-- on January 28, 2013, 08:09:18 PM
 :P

> you probably meant to branch to the RET 4

No, as a matter of fact I really DID intend to use the LEA.
Title: Re: Comments on Replacement for Iczelion's a2dw algorithm in the MASM32 library.
Post by: dedndave on January 29, 2013, 12:21:33 AM
not that it really matters, but eax is already 0
no need in optimizing the exception, though   :P