summaryrefslogtreecommitdiff
path: root/src/w32.c
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2008-12-03 14:13:42 +0000
committerJuanma Barranquero <lekktu@gmail.com>2008-12-03 14:13:42 +0000
commit8b8be8eb0e3ceeca481db18be44a24113b4a4860 (patch)
tree8bdfe7a448580d2e8d36097d3292505161266553 /src/w32.c
parent61cf9fadd4bc276f7f1eece4faeffad9338e0da7 (diff)
downloademacs-8b8be8eb0e3ceeca481db18be44a24113b4a4860.tar.gz
* w32.c (init_environment): Don't free handle to library shell32.dll.
Diffstat (limited to 'src/w32.c')
-rw-r--r--src/w32.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/w32.c b/src/w32.c
index 1032ac57af6..c6660c0d3d6 100644
--- a/src/w32.c
+++ b/src/w32.c
@@ -1443,12 +1443,10 @@ init_environment (char ** argv)
HRESULT profile_result;
/* Dynamically load ShGetFolderPath, as it won't exist on versions
of Windows 95 and NT4 that have not been updated to include
- MSIE 5. Also we don't link with shell32.dll by default. */
- HMODULE shell32_dll;
+ MSIE 5. */
ShGetFolderPath_fn get_folder_path;
- shell32_dll = GetModuleHandle ("shell32.dll");
get_folder_path = (ShGetFolderPath_fn)
- GetProcAddress (shell32_dll, "SHGetFolderPathA");
+ GetProcAddress (GetModuleHandle ("shell32.dll"), "SHGetFolderPathA");
if (get_folder_path != NULL)
{
@@ -1459,9 +1457,6 @@ init_environment (char ** argv)
if (profile_result == S_OK)
env_vars[0].def_value = default_home;
}
-
- /* Unload shell32.dll, it is not needed anymore. */
- FreeLibrary (shell32_dll);
}
/* Get default locale info and use it for LANG. */