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 | |
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
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | ChangeLog.pre-1-0 | 4 | ||||
-rw-r--r-- | ChangeLog.pre-1-10 | 4 | ||||
-rw-r--r-- | ChangeLog.pre-1-2 | 4 | ||||
-rw-r--r-- | ChangeLog.pre-1-4 | 4 | ||||
-rw-r--r-- | ChangeLog.pre-1-6 | 4 | ||||
-rw-r--r-- | ChangeLog.pre-1-8 | 4 | ||||
-rw-r--r-- | pango/pangox.c | 2 |
8 files changed, 29 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2001-02-11 Havoc Pennington <hp@pobox.com> + + * pango/pangox.c (font_struct_get_ligatures): memory leak fix + 2001-02-10 Tor Lillqvist <tml@iki.fi> * pango/pango-utils.c (pango_get_sysconf_subdirectory, diff --git a/ChangeLog.pre-1-0 b/ChangeLog.pre-1-0 index b8fe1ff7..7f6861c4 100644 --- a/ChangeLog.pre-1-0 +++ b/ChangeLog.pre-1-0 @@ -1,3 +1,7 @@ +2001-02-11 Havoc Pennington <hp@pobox.com> + + * pango/pangox.c (font_struct_get_ligatures): memory leak fix + 2001-02-10 Tor Lillqvist <tml@iki.fi> * pango/pango-utils.c (pango_get_sysconf_subdirectory, diff --git a/ChangeLog.pre-1-10 b/ChangeLog.pre-1-10 index b8fe1ff7..7f6861c4 100644 --- a/ChangeLog.pre-1-10 +++ b/ChangeLog.pre-1-10 @@ -1,3 +1,7 @@ +2001-02-11 Havoc Pennington <hp@pobox.com> + + * pango/pangox.c (font_struct_get_ligatures): memory leak fix + 2001-02-10 Tor Lillqvist <tml@iki.fi> * pango/pango-utils.c (pango_get_sysconf_subdirectory, diff --git a/ChangeLog.pre-1-2 b/ChangeLog.pre-1-2 index b8fe1ff7..7f6861c4 100644 --- a/ChangeLog.pre-1-2 +++ b/ChangeLog.pre-1-2 @@ -1,3 +1,7 @@ +2001-02-11 Havoc Pennington <hp@pobox.com> + + * pango/pangox.c (font_struct_get_ligatures): memory leak fix + 2001-02-10 Tor Lillqvist <tml@iki.fi> * pango/pango-utils.c (pango_get_sysconf_subdirectory, diff --git a/ChangeLog.pre-1-4 b/ChangeLog.pre-1-4 index b8fe1ff7..7f6861c4 100644 --- a/ChangeLog.pre-1-4 +++ b/ChangeLog.pre-1-4 @@ -1,3 +1,7 @@ +2001-02-11 Havoc Pennington <hp@pobox.com> + + * pango/pangox.c (font_struct_get_ligatures): memory leak fix + 2001-02-10 Tor Lillqvist <tml@iki.fi> * pango/pango-utils.c (pango_get_sysconf_subdirectory, diff --git a/ChangeLog.pre-1-6 b/ChangeLog.pre-1-6 index b8fe1ff7..7f6861c4 100644 --- a/ChangeLog.pre-1-6 +++ b/ChangeLog.pre-1-6 @@ -1,3 +1,7 @@ +2001-02-11 Havoc Pennington <hp@pobox.com> + + * pango/pangox.c (font_struct_get_ligatures): memory leak fix + 2001-02-10 Tor Lillqvist <tml@iki.fi> * pango/pango-utils.c (pango_get_sysconf_subdirectory, diff --git a/ChangeLog.pre-1-8 b/ChangeLog.pre-1-8 index b8fe1ff7..7f6861c4 100644 --- a/ChangeLog.pre-1-8 +++ b/ChangeLog.pre-1-8 @@ -1,3 +1,7 @@ +2001-02-11 Havoc Pennington <hp@pobox.com> + + * pango/pangox.c (font_struct_get_ligatures): memory leak fix + 2001-02-10 Tor Lillqvist <tml@iki.fi> * pango/pango-utils.c (pango_get_sysconf_subdirectory, 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; |