pango r2779 - in trunk: . pango



Author: behdad
Date: Sat Jan  3 01:06:06 2009
New Revision: 2779
URL: http://svn.gnome.org/viewvc/pango?rev=2779&view=rev

Log:
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.

Modified:
   trunk/ChangeLog
   trunk/pango/modules.c

Modified: trunk/pango/modules.c
==============================================================================
--- trunk/pango/modules.c	(original)
+++ trunk/pango/modules.c	Sat Jan  3 01:06:06 2009
@@ -169,7 +169,7 @@
 
   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());



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]