After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 90089 - Gnome-session crash when starting up
Gnome-session crash when starting up
Status: RESOLVED DUPLICATE of bug 65109
Product: pango
Classification: Platform
Component: general
1.0.x
Other Solaris
: Normal critical
: ---
Assigned To: Owen Taylor
Owen Taylor
Depends on:
Blocks:
 
 
Reported: 2002-08-07 08:49 UTC by Jonas Jonsson
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Jonas Jonsson 2002-08-07 08:49:29 UTC
When starting up, gnome-session crash immediately.

** (gnome-session:23531): WARNING **: Could not find XftConfig file
cannot open file "/usr/X11R6/lib/X11/XftConfig"

Program received signal SIGSEGV, Segmentation fault.
MiniXftPatternFind (p=0x0, object=0xff01ba20 "file", insert=0)
    at minixftpat.c:92
92          for (i = 0; i < p->num; i++)
(gdb) bt
  • #0 MiniXftPatternFind
    at minixftpat.c line 92
  • #1 MiniXftPatternGet
    at minixftpat.c line 262
  • #2 MiniXftPatternGetString
    at minixftpat.c line 327
  • #3 pango_ft2_pattern_hash
    at pangoft2-fontmap.c line 174
  • #4 g_hash_table_lookup
    at gtkplug.c line 313
  • #5 pango_ft2_font_map_new_font
    at pangoft2-fontmap.c line 537
  • #6 pango_ft2_font_map_load_fontset
    at pangoft2-fontmap.c line 654
  • #7 pango_font_map_load_fontset
    at gtkplug.c line 313
  • #8 add_engines
    at gtkplug.c line 313
  • #9 pango_itemize
    at gtkplug.c line 313
  • #10 pango_layout_check_lines
    at gtkplug.c line 313
  • #11 pango_layout_get_extents_internal
    at gtkplug.c line 313
  • #12 pango_layout_get_pixel_size
    at gtkplug.c line 313
  • #13 gnome_canvas_text_set_property
    from /home/konjojo/Solaris/lib/libgnomecanvas-2.so.0
  • #14 g_object_set_valist
    at gtkplug.c line 313
  • #15 gnome_canvas_item_construct
    from /home/konjojo/Solaris/lib/libgnomecanvas-2.so.0
  • #16 gnome_canvas_item_new
    from /home/konjojo/Solaris/lib/libgnomecanvas-2.so.0
  • #17 start_splash
    at gtkplug.c line 313
  • #18 main
    at gtkplug.c line 313
  • #19 .nope
    at gtkplug.c line 313

gcc: 3.0.2
gnu ld: 2.11
freetype: 2.0.9 (freetype-version reports 9.0.3)
glib: 2.0.6
atk: 1.0.3
pango: 1.0.4
gtk+: 2.0.6

Suggestion: Modify the last loop in pango_ft2_font_map_load_fontset
(pangoft2-fontmap.c) so that it reads:

  for (i = 0; i < patterns->n_patterns; i++)
     {
	if (patterns->patterns[i] != NULL)
	   {
	      pango_fontset_simple_append (simple, pango_ft2_font_map_new_font
(fontmap, patterns->patterns[i]));
	   }
     }

Cheers!  Keep up the good work.
/Jonas
Comment 1 Jonas Jonsson 2002-08-07 08:53:28 UTC
Forgot to mention that GDK_USE_XFT is explicitly set to zero (0) ...
Comment 2 Owen Taylor 2002-08-07 12:14:41 UTC
The suggested change might make it crash a tiny bit later
but wouldnt chage the basic problem that you don't have
_any_ fonts configured for the FT2 backend to find.



*** This bug has been marked as a duplicate of 65109 ***
Comment 3 Owen Taylor 2002-08-07 12:15:47 UTC
(The XftConfig file isn't just used for the Xft backend, it
is also used by the "FreeType2" backend that things like
the GNOME canvas use.)