mirror of
https://github.com/reactos/reactos.git
synced 2025-06-12 05:28:28 +00:00
- Fix RegSetValueEx parameters
- Found by Chris svn path=/trunk/; revision=38006
This commit is contained in:
parent
193151855a
commit
dbd198da9d
1 changed files with 2 additions and 2 deletions
|
@ -2179,7 +2179,7 @@ ProcessUnattendInf(HINF hUnattendedInf)
|
||||||
0,
|
0,
|
||||||
REG_SZ,
|
REG_SZ,
|
||||||
(const BYTE*)szPath,
|
(const BYTE*)szPath,
|
||||||
_tcslen(szPath) * sizeof(TCHAR)) == ERROR_SUCCESS)
|
(_tcslen(szPath)+1) * sizeof(TCHAR)) == ERROR_SUCCESS)
|
||||||
{
|
{
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
|
@ -2217,7 +2217,7 @@ ProcessUnattendInf(HINF hUnattendedInf)
|
||||||
0,
|
0,
|
||||||
REG_SZ,
|
REG_SZ,
|
||||||
(const BYTE*)szPath,
|
(const BYTE*)szPath,
|
||||||
strlen(szPath) * sizeof(char));
|
(strlen(szPath)+1) * sizeof(char));
|
||||||
|
|
||||||
|
|
||||||
/* winetests */
|
/* winetests */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue