mirror of
https://github.com/reactos/reactos.git
synced 2025-03-01 03:45:16 +00:00
[UCRT] Fix a typo/bug in __acrt_mbs_to_wcs_cp_array
This commit is contained in:
parent
48d8d198b2
commit
d622c4a7a0
1 changed files with 1 additions and 1 deletions
|
@ -701,7 +701,7 @@ size_t __acrt_mbs_to_wcs_cp_array(
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
__crt_no_alloc_win32_buffer<wchar_t> win32_buffer(buffer);
|
__crt_no_alloc_win32_buffer<wchar_t> win32_buffer(buffer);
|
||||||
if (__acrt_wcs_to_mbs_cp(null_terminated_input_string, win32_buffer, code_page) != 0) {
|
if (__acrt_mbs_to_wcs_cp(null_terminated_input_string, win32_buffer, code_page) != 0) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue