Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
bf6e8815
Commit
bf6e8815
authored
Nov 12, 2020
by
Jacek Caban
Committed by
Alexandre Julliard
Nov 13, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hostname: Use CP_ACP for non-console output encoding.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f24499eb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
hostname.c
programs/hostname/hostname.c
+2
-3
No files found.
programs/hostname/hostname.c
View file @
bf6e8815
...
@@ -47,14 +47,13 @@ static int hostname_vprintfW(const WCHAR *msg, __ms_va_list va_args)
...
@@ -47,14 +47,13 @@ static int hostname_vprintfW(const WCHAR *msg, __ms_va_list va_args)
* back to WriteFile(), assuming the console encoding is still the right
* back to WriteFile(), assuming the console encoding is still the right
* one in that case.
* one in that case.
*/
*/
len
=
WideCharToMultiByte
(
GetConsoleOutputCP
()
,
0
,
msg_buffer
,
wlen
,
len
=
WideCharToMultiByte
(
CP_ACP
,
0
,
msg_buffer
,
wlen
,
NULL
,
0
,
NULL
,
NULL
);
NULL
,
0
,
NULL
,
NULL
);
msgA
=
HeapAlloc
(
GetProcessHeap
(),
0
,
len
);
msgA
=
HeapAlloc
(
GetProcessHeap
(),
0
,
len
);
if
(
!
msgA
)
if
(
!
msgA
)
return
0
;
return
0
;
WideCharToMultiByte
(
GetConsoleOutputCP
(),
0
,
msg_buffer
,
wlen
,
msgA
,
len
,
WideCharToMultiByte
(
CP_ACP
,
0
,
msg_buffer
,
wlen
,
msgA
,
len
,
NULL
,
NULL
);
NULL
,
NULL
);
WriteFile
(
GetStdHandle
(
STD_OUTPUT_HANDLE
),
msgA
,
len
,
&
count
,
FALSE
);
WriteFile
(
GetStdHandle
(
STD_OUTPUT_HANDLE
),
msgA
,
len
,
&
count
,
FALSE
);
HeapFree
(
GetProcessHeap
(),
0
,
msgA
);
HeapFree
(
GetProcessHeap
(),
0
,
msgA
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment