mirror of
https://github.com/reactos/reactos.git
synced 2025-01-13 01:22:03 +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,
|
||||
REG_SZ,
|
||||
(const BYTE*)szPath,
|
||||
_tcslen(szPath) * sizeof(TCHAR)) == ERROR_SUCCESS)
|
||||
(_tcslen(szPath)+1) * sizeof(TCHAR)) == ERROR_SUCCESS)
|
||||
{
|
||||
i++;
|
||||
}
|
||||
|
@ -2217,7 +2217,7 @@ ProcessUnattendInf(HINF hUnattendedInf)
|
|||
0,
|
||||
REG_SZ,
|
||||
(const BYTE*)szPath,
|
||||
strlen(szPath) * sizeof(char));
|
||||
(strlen(szPath)+1) * sizeof(char));
|
||||
|
||||
|
||||
/* winetests */
|
||||
|
|
Loading…
Reference in a new issue