summaryrefslogtreecommitdiff
path: root/pango/pango-glyph-item.c
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2002-12-08 20:35:55 +0000
committerOwen Taylor <otaylor@src.gnome.org>2002-12-08 20:35:55 +0000
commitd61424a7937eb84299077b8c76e3ba8ac23c39eb (patch)
tree391f791e5eb12e942c627c1b1f25fc7dc1876073 /pango/pango-glyph-item.c
parent5bc1d0097c92379bc223bd4d968c3feffe5f233d (diff)
downloadpango-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.c2
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;
}