diff options
author | Owen Taylor <otaylor@redhat.com> | 2002-12-08 20:35:55 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2002-12-08 20:35:55 +0000 |
commit | d61424a7937eb84299077b8c76e3ba8ac23c39eb (patch) | |
tree | 391f791e5eb12e942c627c1b1f25fc7dc1876073 /pango/pango-glyph-item.c | |
parent | 5bc1d0097c92379bc223bd4d968c3feffe5f233d (diff) | |
download | pango-d61424a7937eb84299077b8c76e3ba8ac23c39eb.tar.gz |
Free the iter. (Fix from Kjartan Maraas, #100672)
Sun Dec 8 15:22:10 2002 Owen Taylor <otaylor@redhat.com>
* pango/pango-glyph-item.c (pango_glyph_item_apply_attrs):
Free the iter. (Fix from Kjartan Maraas, #100672)
Diffstat (limited to 'pango/pango-glyph-item.c')
-rw-r--r-- | pango/pango-glyph-item.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pango/pango-glyph-item.c b/pango/pango-glyph-item.c index 0ea520ac..a941f650 100644 --- a/pango/pango-glyph-item.c +++ b/pango/pango-glyph-item.c @@ -203,6 +203,8 @@ pango_glyph_item_apply_attrs (PangoGlyphItem *glyph_item, if (ltr) result = g_slist_reverse (result); + + pango_attr_iterator_destroy (iter); return result; } |