msiexec: Fix atou() return value mistake.

This commit is contained in:
Patrick Moran 2007-11-25 02:35:27 -05:00 committed by Alexandre Julliard
parent 68b1f2cde2
commit 0b79b0e58a
1 changed files with 1 additions and 1 deletions

View File

@ -209,7 +209,7 @@ static DWORD msi_atou(LPCWSTR str)
ret += (*str - '0');
str++;
}
return 0;
return ret;
}
static LPWSTR msi_strdup(LPCWSTR str)