summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2003-04-16 01:24:18 +0000
committerOwen Taylor <otaylor@src.gnome.org>2003-04-16 01:24:18 +0000
commit2c43ed9fd9815446e4d3246fef5459cb554417c4 (patch)
tree7b193ecbb62f9a125d80f99a979350afcc935282
parent875ee948b7d6dbb4f2cea9eb61c193685f34d0d7 (diff)
downloadpango-2c43ed9fd9815446e4d3246fef5459cb554417c4.tar.gz
Free the right string.
Tue Apr 15 09:19:21 2003 Owen Taylor <otaylor@redhat.com> * pango/fonts.c (pango_font_description_set_family): Free the right string.
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.pre-1-105
-rw-r--r--ChangeLog.pre-1-45
-rw-r--r--ChangeLog.pre-1-65
-rw-r--r--ChangeLog.pre-1-85
-rw-r--r--pango/fonts.c2
6 files changed, 26 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 809b0c99..2f4eda6d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Tue Apr 15 09:19:21 2003 Owen Taylor <otaylor@redhat.com>
+
+ * pango/fonts.c (pango_font_description_set_family):
+ Free the right string.
+
Tue Apr 15 06:57:02 2003 Owen Taylor <otaylor@redhat.com>
* pango/opentype/ftxgpos.c: Fix mispelled constant
diff --git a/ChangeLog.pre-1-10 b/ChangeLog.pre-1-10
index 809b0c99..2f4eda6d 100644
--- a/ChangeLog.pre-1-10
+++ b/ChangeLog.pre-1-10
@@ -1,3 +1,8 @@
+Tue Apr 15 09:19:21 2003 Owen Taylor <otaylor@redhat.com>
+
+ * pango/fonts.c (pango_font_description_set_family):
+ Free the right string.
+
Tue Apr 15 06:57:02 2003 Owen Taylor <otaylor@redhat.com>
* pango/opentype/ftxgpos.c: Fix mispelled constant
diff --git a/ChangeLog.pre-1-4 b/ChangeLog.pre-1-4
index 809b0c99..2f4eda6d 100644
--- a/ChangeLog.pre-1-4
+++ b/ChangeLog.pre-1-4
@@ -1,3 +1,8 @@
+Tue Apr 15 09:19:21 2003 Owen Taylor <otaylor@redhat.com>
+
+ * pango/fonts.c (pango_font_description_set_family):
+ Free the right string.
+
Tue Apr 15 06:57:02 2003 Owen Taylor <otaylor@redhat.com>
* pango/opentype/ftxgpos.c: Fix mispelled constant
diff --git a/ChangeLog.pre-1-6 b/ChangeLog.pre-1-6
index 809b0c99..2f4eda6d 100644
--- a/ChangeLog.pre-1-6
+++ b/ChangeLog.pre-1-6
@@ -1,3 +1,8 @@
+Tue Apr 15 09:19:21 2003 Owen Taylor <otaylor@redhat.com>
+
+ * pango/fonts.c (pango_font_description_set_family):
+ Free the right string.
+
Tue Apr 15 06:57:02 2003 Owen Taylor <otaylor@redhat.com>
* pango/opentype/ftxgpos.c: Fix mispelled constant
diff --git a/ChangeLog.pre-1-8 b/ChangeLog.pre-1-8
index 809b0c99..2f4eda6d 100644
--- a/ChangeLog.pre-1-8
+++ b/ChangeLog.pre-1-8
@@ -1,3 +1,8 @@
+Tue Apr 15 09:19:21 2003 Owen Taylor <otaylor@redhat.com>
+
+ * pango/fonts.c (pango_font_description_set_family):
+ Free the right string.
+
Tue Apr 15 06:57:02 2003 Owen Taylor <otaylor@redhat.com>
* pango/opentype/ftxgpos.c: Fix mispelled constant
diff --git a/pango/fonts.c b/pango/fonts.c
index 84b659b8..eb18f65e 100644
--- a/pango/fonts.c
+++ b/pango/fonts.c
@@ -115,7 +115,7 @@ pango_font_description_set_family (PangoFontDescription *desc,
}
if (old_family)
- g_free (desc->family_name);
+ g_free (old_family);
}
/**