mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 09:52:56 +00:00
[crt]
- mbstowcs: Fix incorrect size passed as the second parameter for call to RtlMultiByteToUnicodeN. Fixes loading assemblies when manifest is in a manifest file due to parsing failure. svn path=/trunk/; revision=47527
This commit is contained in:
parent
8f37e32fd6
commit
f6d5918b31
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ size_t mbstowcs (wchar_t *wcstr, const char *mbstr, size_t count)
|
||||||
}
|
}
|
||||||
|
|
||||||
Status = RtlMultiByteToUnicodeN (wcstr,
|
Status = RtlMultiByteToUnicodeN (wcstr,
|
||||||
count,
|
count * sizeof(WCHAR),
|
||||||
&Size,
|
&Size,
|
||||||
mbstr,
|
mbstr,
|
||||||
Length);
|
Length);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue