We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee1d6fd commit 3e1cdd4Copy full SHA for 3e1cdd4
src/win_delay_load_hook.cc
@@ -29,7 +29,7 @@ static FARPROC WINAPI load_exe_hook(unsigned int event, DelayLoadInfo* info) {
29
return NULL;
30
31
// try for libnode.dll to compat node.js that using 'vcbuild.bat dll'
32
- m = GetModuleHandle("libnode.dll");
+ m = GetModuleHandle(TEXT("libnode.dll"));
33
if (m == NULL) m = GetModuleHandle(NULL);
34
return (FARPROC) m;
35
}
0 commit comments