David W. Zavitz - 2008-04-28

Logged In: YES
user_id=2022655
Originator: YES

suggest adding these two lines in file conv_atou32.hla

whileDelimLoop:

NextChar;

cmp( eax, $0 ); // ADDED to handle case of zero length string //
je convError; // ADDED to handle case of zero length string //

cmp( eax, $80 );
jae IllegalChar;
bt( eax, (type dword Delimiters ) );
jc whileDelimLoop;