[Bug 522187] Java (so Eclipse too) crashes

bugzilla at redhat.com bugzilla at redhat.com
Sat Sep 26 04:06:38 UTC 2009


Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.


https://bugzilla.redhat.com/show_bug.cgi?id=522187





--- Comment #6 from Behdad Esfahbod <besfahbo at redhat.com>  2009-09-26 00:06:37 EDT ---
There's no way a legit crash can happen in pango_layout_new().  Here's the code
for that function:

PangoLayout * 
pango_layout_new (PangoContext *context) 
{ 
  PangoLayout *layout; 

  g_return_val_if_fail (context != NULL, NULL); 

  layout = g_object_new (PANGO_TYPE_LAYOUT, NULL); 

  layout->context = context; 
  g_object_ref (context); 

  return layout; 
} 


So, either context passed to it is NULL, or this is a memory corruption
happening somewhere else.  I can't do anything about it.

-- 
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.




More information about the fonts-bugs mailing list