|
From: gnome-perl (bugzilla.gnome.org) <bug...@bu...> - 2007-07-22 11:41:01
|
If you have any questions why you received this email, please see the text at the end of this email. Replies to this email are NOT read, please see the text at the end of this email. You can add comments to this bug at: http://bugzilla.gnome.org/show_bug.cgi?id=458458 gnome-perl | Gtk2 | Ver: unspecified Torsten Schoenfeld changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kaf...@gm... Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 ------- Comment #2 from Torsten Schoenfeld 2007-07-22 11:40 UTC ------- That's a bindings bug, kind of. Since pango doesn't provide a pango_matrix_new, we roll our own in the bindings using g_new0. But starting with 1.12.0 (revision 1696 in SVN), pango changed every memory allocation code to use GSlice. That means we now allocate a PangoMatrix struct with g_new0 and then pango frees it with g_slice_free. The attached patch fixes the issue for me. -- See http://bugzilla.gnome.org/page.cgi?id=email.html for more info about why you received this email, why you can't respond via email, how to stop receiving emails (or reduce the number you receive), and how to contact someone if you are having problems with the system. You can add comments to this bug at http://bugzilla.gnome.org/show_bug.cgi?id=458458. |