msiexec: Fix atou() return value mistake.
This commit is contained in:
parent
68b1f2cde2
commit
0b79b0e58a
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue