diff options
author | Havoc Pennington <hp@pobox.com> | 2001-02-11 22:31:19 +0000 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 2001-02-11 22:31:19 +0000 |
commit | a8685ec65f19b3dffe4029a9d17d018f62ec1798 (patch) | |
tree | f73801b5972e74c9941422efcaac821cb54a9b60 /pango/pangox.c | |
parent | d6f9b720674c1eef1f1975d567a8fdf197bc9fc7 (diff) | |
download | pango-a8685ec65f19b3dffe4029a9d17d018f62ec1798.tar.gz |
memory leak fix
2001-02-11 Havoc Pennington <hp@pobox.com>
* pango/pangox.c (font_struct_get_ligatures): memory leak fix
Diffstat (limited to 'pango/pangox.c')
-rw-r--r-- | pango/pangox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pango/pangox.c b/pango/pangox.c index d429ca59..509c5c35 100644 --- a/pango/pangox.c +++ b/pango/pangox.c @@ -1695,7 +1695,7 @@ font_struct_get_ligatures (PangoFontMap *fontmap, list = g_list_next (list); } - g_list_free (list); + g_list_free (list_start); info->n_ligs = n_linfo; info->ligs = linfo; |