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 <[email protected]>  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.

_______________________________________________
Fedora-fonts-bugs-list mailing list
[email protected]
https://www.redhat.com/mailman/listinfo/fedora-fonts-bugs-list

Reply via email to