From: Michal MalĂ˝ Date: Tue, 8 Dec 2015 20:41:03 +0000 (+0100) Subject: Expect the file path to method data file to be in UTF-8 on Win32 X-Git-Url: https://gitweb.devoid-pointer.net/?a=commitdiff_plain;h=3e49cec242c6ae1fa10e7861f5d4e9969e413be4;p=libHPCS.git Expect the file path to method data file to be in UTF-8 on Win32 --- 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;