Checking that str is non-zero is superfluous in (*str && *str == ' ') 0x20 is always non-zero. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
@@ -305,7 +305,7 @@ Atoi (
CHAR16 c;
// skip preceeding white space
- while (*str && *str == ' ') {
+ while (*str == ' ') {
str += 1;
}