diff options
author | Matthias Clasen <mclasen@redhat.com> | 2006-08-26 00:27:11 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2006-08-26 00:27:11 +0000 |
commit | 4ab827e20a047eb4b6ef033f9d8bddb5a403e72d (patch) | |
tree | d51b183fd195d18470c2ad09afb15933656a418c /gtk/gtkmodules.c | |
parent | 344e15b79f7334e4d733c12c9649a6b92769b703 (diff) | |
download | gtk+-4ab827e20a047eb4b6ef033f9d8bddb5a403e72d.tar.gz |
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)
Diffstat (limited to 'gtk/gtkmodules.c')
-rw-r--r-- | gtk/gtkmodules.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkmodules.c b/gtk/gtkmodules.c index 33020f72fb..6430cf6e66 100644 --- a/gtk/gtkmodules.c +++ b/gtk/gtkmodules.c @@ -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; |