summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--ChangeLog.pre-1-04
-rw-r--r--ChangeLog.pre-1-104
-rw-r--r--ChangeLog.pre-1-24
-rw-r--r--ChangeLog.pre-1-44
-rw-r--r--ChangeLog.pre-1-64
-rw-r--r--ChangeLog.pre-1-84
-rw-r--r--pango/pangox.c2
8 files changed, 29 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b8fe1ff7..7f6861c4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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;