diff options
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/ChangeLog | 4 | ||||
-rw-r--r-- | e-util/e-font.c | 2 |
2 files changed, 5 insertions, 1 deletions
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 <clahey@helixcode.com> + + * e-font.c: Fixed an uninitialized variable. + 2000-09-12 Lauris Kaplinski <lauris@helixcode.com> * 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; |