From cfafba68c64fed0626af8b22d6c4cdccb3261ced Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Wed, 31 Dec 2014 12:38:08 -0800 Subject: src,deps: replace LoadLibrary by LoadLibraryW On Windows, when compiling with `UNICODE` defined, `LoadLibrary` becomes `LoadLibraryW`. When an ASCII string is passed to that function it crashes. PR-URL: https://github.com/iojs/io.js/pull/226 Reviewed-By: Bert Belder --- deps/cares/src/ares_library_init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'deps/cares/src/ares_library_init.c') diff --git a/deps/cares/src/ares_library_init.c b/deps/cares/src/ares_library_init.c index 049dc3d7fa..c2bfb093e2 100644 --- a/deps/cares/src/ares_library_init.c +++ b/deps/cares/src/ares_library_init.c @@ -50,7 +50,7 @@ static int ares_win32_init(void) #ifdef USE_WINSOCK hnd_iphlpapi = 0; - hnd_iphlpapi = LoadLibrary("iphlpapi.dll"); + hnd_iphlpapi = LoadLibraryW(L"iphlpapi.dll"); if (!hnd_iphlpapi) return ARES_ELOADIPHLPAPI; @@ -78,7 +78,7 @@ static int ares_win32_init(void) */ hnd_advapi32 = 0; - hnd_advapi32 = LoadLibrary("advapi32.dll"); + hnd_advapi32 = LoadLibraryW(L"advapi32.dll"); if (hnd_advapi32) { ares_fpSystemFunction036 = (fpSystemFunction036_t) -- cgit v1.2.3