diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2009-01-03 01:06:06 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2009-01-03 01:06:06 +0000 |
commit | e90dc49f5c8800fa81e259d08aef524ef1912793 (patch) | |
tree | 70eeefad8dbbde895bf4837727a47399e5515263 | |
parent | 0e2179678f77fff7a4ecd99e6fda553566e91ed5 (diff) | |
download | pango-e90dc49f5c8800fa81e259d08aef524ef1912793.tar.gz |
Bug 515807 – Don't bind modules lazily
2009-01-02 Behdad Esfahbod <behdad@gnome.org>
Bug 515807 – Don't bind modules lazily
* pango/modules.c (pango_module_load): Don't bind modules lazy.
svn path=/trunk/; revision=2779
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | pango/modules.c | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,11 @@ 2009-01-02 Behdad Esfahbod <behdad@gnome.org> + Bug 515807 – Don't bind modules lazily + + * pango/modules.c (pango_module_load): Don't bind modules lazy. + +2009-01-02 Behdad Esfahbod <behdad@gnome.org> + Bug 512662 – Update check.docs for pango-undeclared.txt * docs/Makefile.am: diff --git a/pango/modules.c b/pango/modules.c index 16a04eb2..e6c13349 100644 --- a/pango/modules.c +++ b/pango/modules.c @@ -169,7 +169,7 @@ pango_module_load (GTypeModule *module) if (pango_module->path) { - pango_module->library = g_module_open (pango_module->path, G_MODULE_BIND_LAZY | G_MODULE_BIND_LOCAL); + pango_module->library = g_module_open (pango_module->path, G_MODULE_BIND_LOCAL); if (!pango_module->library) { g_warning ("%s", g_module_error()); |