forked from AuroraMiddleware/gtk
Use local binding when loading modules. (#351868)
2006-08-25 Matthias Clasen <mclasen@redhat.com> * gtk/gtkmodules.c (find_module): Use local binding when loading modules. (#351868)
This commit is contained in:
parent
344e15b79f
commit
4ab827e20a
@ -1,3 +1,8 @@
|
||||
2006-08-25 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkmodules.c (find_module): Use local binding when
|
||||
loading modules. (#351868)
|
||||
|
||||
2006-08-24 Michael Natterer <mitch@imendio.com>
|
||||
|
||||
* gdk/quartz/gdkdisplay-quartz.c (gdk_display_get_name): return
|
||||
|
@ -236,7 +236,7 @@ find_module (const gchar *name)
|
||||
module_name = g_module_build_path (NULL, name);
|
||||
}
|
||||
|
||||
module = g_module_open (module_name, G_MODULE_BIND_LAZY);
|
||||
module = g_module_open (module_name, G_MODULE_BIND_LOCAL | G_MODULE_BIND_LAZY);
|
||||
g_free(module_name);
|
||||
|
||||
return module;
|
||||
|
Loading…
Reference in New Issue
Block a user