Commit 0b79b0e5 authored by Patrick Moran's avatar Patrick Moran Committed by Alexandre Julliard

msiexec: Fix atou() return value mistake.

parent 68b1f2cd
...@@ -209,7 +209,7 @@ static DWORD msi_atou(LPCWSTR str) ...@@ -209,7 +209,7 @@ static DWORD msi_atou(LPCWSTR str)
ret += (*str - '0'); ret += (*str - '0');
str++; str++;
} }
return 0; return ret;
} }
static LPWSTR msi_strdup(LPCWSTR str) static LPWSTR msi_strdup(LPCWSTR str)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment