summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2003-04-16 01:24:28 +0000
committerOwen Taylor <otaylor@src.gnome.org>2003-04-16 01:24:28 +0000
commit5c4181f08f019371634c60e186b50f773a23e05b (patch)
tree2034fbd22523e91a58e66b730e0c026b949ff8b0
parenta3084538073498ad106084b395201af90d540311 (diff)
downloadpango-5c4181f08f019371634c60e186b50f773a23e05b.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 10cfe274..11e92464 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 10cfe274..11e92464 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 10cfe274..11e92464 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 10cfe274..11e92464 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 10cfe274..11e92464 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 dd34d2ca..4e67e17c 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);
}
/**