Bug 567138 - get_package_directory_from_module() does not free its lock

2009-01-09  Tor Lillqvist  <tml@iki.fi>

	Bug 567138 - get_package_directory_from_module() does not free its
	lock when failing

	* glib/gwin32.c (get_package_directory_from_module): Obvious fix.


svn path=/trunk/; revision=7794
This commit is contained in:
Tor Lillqvist 2009-01-09 10:37:31 +00:00 committed by Tor Lillqvist
parent f8cfff0686
commit eeb4d5939d
2 changed files with 15 additions and 3 deletions

View File

@ -1,3 +1,10 @@
2009-01-09 Tor Lillqvist <tml@iki.fi>
Bug 567138 - get_package_directory_from_module() does not free its
lock when failing
* glib/gwin32.c (get_package_directory_from_module): Obvious fix.
2009-01-05 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version

View File

@ -298,14 +298,19 @@ get_package_directory_from_module (const gchar *module_name)
hmodule = GetModuleHandleW (wc_module_name);
g_free (wc_module_name);
if (!hmodule)
return NULL;
if (!hmodule){
G_UNLOCK (module_dirs);
return NULL;
}
}
fn = g_win32_get_package_installation_directory_of_module (hmodule);
if (fn == NULL)
return NULL;
{
G_UNLOCK (module_dirs);
return NULL;
}
g_hash_table_insert (module_dirs, module_name ? g_strdup (module_name) : "", fn);