mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
[WIN32K:NTUSER]
- Store string system parameter settings null-terminated CORE-8653 #resolve svn path=/trunk/; revision=66448
This commit is contained in:
parent
72c5a3a810
commit
ee88b1c9f3
1 changed files with 1 additions and 1 deletions
|
@ -374,7 +374,7 @@ SpiStoreSz(PCWSTR pwszKey, PCWSTR pwszValue, PCWSTR pwsz)
|
|||
pwszValue,
|
||||
REG_SZ,
|
||||
(PWSTR)pwsz,
|
||||
wcslen(pwsz) * sizeof(WCHAR));
|
||||
(wcslen(pwsz) + 1) * sizeof(WCHAR));
|
||||
}
|
||||
|
||||
static
|
||||
|
|
Loading…
Reference in a new issue