Stop looking for modules in cwd
This is just not a good idea. It is surprising, and can be misused. Fixes: #6786
This commit is contained in:
parent
f8018da0d7
commit
3bbf0b6176
@ -214,13 +214,8 @@ find_module (const gchar *name)
|
|||||||
gchar *module_name;
|
gchar *module_name;
|
||||||
|
|
||||||
module_name = _gtk_find_module (name, "modules");
|
module_name = _gtk_find_module (name, "modules");
|
||||||
if (!module_name)
|
if (module_name == NULL)
|
||||||
{
|
return NULL;
|
||||||
/* As last resort, try loading without an absolute path (using system
|
|
||||||
* library path)
|
|
||||||
*/
|
|
||||||
module_name = g_module_build_path (NULL, name);
|
|
||||||
}
|
|
||||||
|
|
||||||
module = g_module_open (module_name, G_MODULE_BIND_LOCAL | G_MODULE_BIND_LAZY);
|
module = g_module_open (module_name, G_MODULE_BIND_LOCAL | G_MODULE_BIND_LAZY);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user