summaryrefslogtreecommitdiff
path: root/wsutil
diff options
context:
space:
mode:
Diffstat (limited to 'wsutil')
-rw-r--r--wsutil/file_util.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/wsutil/file_util.c b/wsutil/file_util.c
index a5cd62fdb7..cdbe0a4f01 100644
--- a/wsutil/file_util.c
+++ b/wsutil/file_util.c
@@ -514,6 +514,8 @@ ws_init_dll_search_path()
{
gboolean dll_dir_set = FALSE;
wchar_t *program_path_w;
+ wchar_t npcap_path_w[MAX_PATH];
+ unsigned int retval;
typedef BOOL (WINAPI *SetDllDirectoryHandler)(LPCTSTR);
SetDllDirectoryHandler PSetDllDirectory;
@@ -521,6 +523,13 @@ ws_init_dll_search_path()
PSetDllDirectory = (SetDllDirectoryHandler) GetProcAddress(GetModuleHandle(_T("kernel32.dll")), "SetDllDirectoryW");
if (PSetDllDirectory) {
dll_dir_set = PSetDllDirectory(_T(""));
+ if (dll_dir_set) {
+ retval = GetSystemDirectoryW(npcap_path_w, MAX_PATH);
+ if (0 < retval && retval <= MAX_PATH) {
+ wcscat_s(npcap_path_w, MAX_PATH, L"\\Npcap");
+ dll_dir_set = PSetDllDirectory(npcap_path_w);
+ }
+ }
}
if (!dll_dir_set && init_dll_load_paths()) {