From 3e49cec242c6ae1fa10e7861f5d4e9969e413be4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michal=20Mal=C3=BD?= Date: Tue, 8 Dec 2015 21:41:03 +0100 Subject: [PATCH] Expect the file path to method data file to be in UTF-8 on Win32 --- libhpcs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libhpcs.c b/libhpcs.c index a48e118..2a8eab4 100644 --- a/libhpcs.c +++ b/libhpcs.c @@ -1084,7 +1084,7 @@ static FILE* __win32_open_data_file(const char* filename) int w_size; /* Get the required size */ - w_size = MultiByteToWideChar(CP_ACP, MB_PRECOMPOSED, filename, -1, NULL, 0); + w_size = MultiByteToWideChar(CP_UTF8, MB_PRECOMPOSED, filename, -1, NULL, 0); if (w_size == 0) { PR_DEBUGF("Count MultiByteToWideChar() error: %x\n", GetLastError()); return NULL; -- 2.43.5