mirror of
https://github.com/reactos/reactos.git
synced 2025-05-17 16:27:00 +00:00
[USER32]
Fix sizeof(WCHAR) vs sizeof(CHAR) problem. Patch by Victor Martinez. CORE-8166 #resolve #comment Committed in r63341, thanks. svn path=/trunk/; revision=63341
This commit is contained in:
parent
34ea0a3ea7
commit
7c2c3d6d1f
1 changed files with 1 additions and 1 deletions
|
@ -131,7 +131,7 @@ LoadAppInitDlls()
|
|||
LPWSTR ptr;
|
||||
size_t i;
|
||||
|
||||
RtlCopyMemory(buffer, szAppInit, KEY_LENGTH);
|
||||
RtlCopyMemory(buffer, szAppInit, KEY_LENGTH * sizeof(WCHAR) );
|
||||
|
||||
for (i = 0; i < KEY_LENGTH; ++ i)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue