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 766452 - PangoAttribute could be boxed
PangoAttribute could be boxed
Status: RESOLVED OBSOLETE
Product: pango
Classification: Platform
Component: language-bindings
unspecified
Other Linux
: Normal enhancement
: ---
Assigned To: pango-maint
pango-maint
Depends on:
Blocks: 771862
 
 
Reported: 2016-05-14 19:48 UTC by Iñaki García Etxebarria
Modified: 2018-05-22 13:18 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Patch that makes PangoAttribute a boxed type (1.38 KB, patch)
2017-04-27 19:38 UTC, Matijs van Zuijlen
none Details | Review

Description Iñaki García Etxebarria 2016-05-14 19:48:12 UTC
It looks like PangoAttribute could be made into a boxed type (using pango_attribute_copy and pango_attribute_destroy as the copy and free functions in G_DEFINE_BOXED_TYPE).

This is useful for bindings, since otherwise one needs to write special handling functions for PangoAttribute, to make sure the associated memory is managed correctly. (In the Haskell bindings we are currently doing this, but it would be good to remove the special case down the road.)

Could it be possible to make PangoAttribute into a boxed type? Basically adding
G_DEFINE_BOXED_TYPE (PangoAttribute, pango_attribute, pango_attribute_copy, pango_attribute_destroy)
I think.
Comment 1 Matthias Clasen 2017-04-08 03:18:19 UTC
A patch would be welcome for this
Comment 2 Matijs van Zuijlen 2017-04-27 19:38:01 UTC
Created attachment 350594 [details] [review]
Patch that makes PangoAttribute a boxed type

Here's a patch that implements this. It may need a different version macro.
Comment 3 Cédric Krier 2017-06-25 16:59:51 UTC
When testing this patch I got double free with this simple python code:

> from gi.repository import Pango
> a = Pango.attr_weight_new(Pango.Weight.BOLD)
> del a
Comment 4 Cédric Krier 2017-06-25 17:30:23 UTC
Oops, indeed when testing python was not using the right library, it works with double free.
Sorry for the noise
Comment 5 GNOME Infrastructure Team 2018-05-22 13:18:58 UTC
-- GitLab Migration Automatic Message --

This bug has been migrated to GNOME's GitLab instance and has been closed from further activity.

You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.gnome.org/GNOME/pango/issues/259.