diff options
author | Owen Taylor <otaylor@redhat.com> | 2003-04-16 01:24:49 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2003-04-16 01:24:49 +0000 |
commit | 9a667ca47559ab501b33b9bc52052594735316e5 (patch) | |
tree | a5198d0987f5aec14351f7ada72b27a74799eb4f /pango/fonts.c | |
parent | 7465eeb03abcb70ec5ba637c9e602832fb24cb47 (diff) | |
download | pango-9a667ca47559ab501b33b9bc52052594735316e5.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.
Diffstat (limited to 'pango/fonts.c')
-rw-r--r-- | pango/fonts.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } /** |