From a459b3d5d3b8ac939b0c694ec3d0e743d1d193d4 Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Wed, 13 Sep 2000 19:18:39 +0000 Subject: Fixed an uninitialized variable. 2000-09-13 Christopher James Lahey * e-font.c: Fixed an uninitialized variable. svn path=/trunk/; revision=5407 --- e-util/ChangeLog | 4 ++++ e-util/e-font.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'e-util') diff --git a/e-util/ChangeLog b/e-util/ChangeLog index b5ae0307d0..0124366bca 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,7 @@ +2000-09-13 Christopher James Lahey + + * e-font.c: Fixed an uninitialized variable. + 2000-09-12 Lauris Kaplinski * e-unicode.c (e_utf8_to_gtk_string_sized): Use underscores diff --git a/e-util/e-font.c b/e-util/e-font.c index d9dc90303b..404bc8ec66 100644 --- a/e-util/e-font.c +++ b/e-util/e-font.c @@ -455,7 +455,7 @@ find_variants (gchar **namelist, gint length, gchar *weight, static GHashTable *wh = NULL; /* Standard, Found, Bold, Light */ gint sw, fw, bw, lw; - gchar *s, *f, *b, *l; + gchar *s, *f, *b, *l = NULL; gchar *p; gint i; -- cgit v1.2.3