From e90dc49f5c8800fa81e259d08aef524ef1912793 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Sat, 3 Jan 2009 01:06:06 +0000 Subject: =?UTF-8?q?Bug=20515807=20=E2=80=93=20Don't=20bind=20modules=20laz?= =?UTF-8?q?ily?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 2009-01-02 Behdad Esfahbod Bug 515807 – Don't bind modules lazily * pango/modules.c (pango_module_load): Don't bind modules lazy. svn path=/trunk/; revision=2779 --- pango/modules.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pango/modules.c') 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()); -- cgit v1.2.1