diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-09-14 03:18:39 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-09-14 03:18:39 +0800 |
commit | a459b3d5d3b8ac939b0c694ec3d0e743d1d193d4 (patch) | |
tree | 7add98d7fc7c733a6ef1c6af6567a9b66829a80c /e-util | |
parent | a801b3b6914f17a84b6ec156b5f14d0451d21931 (diff) | |
download | gsoc2013-evolution-a459b3d5d3b8ac939b0c694ec3d0e743d1d193d4.tar gsoc2013-evolution-a459b3d5d3b8ac939b0c694ec3d0e743d1d193d4.tar.gz gsoc2013-evolution-a459b3d5d3b8ac939b0c694ec3d0e743d1d193d4.tar.bz2 gsoc2013-evolution-a459b3d5d3b8ac939b0c694ec3d0e743d1d193d4.tar.lz gsoc2013-evolution-a459b3d5d3b8ac939b0c694ec3d0e743d1d193d4.tar.xz gsoc2013-evolution-a459b3d5d3b8ac939b0c694ec3d0e743d1d193d4.tar.zst gsoc2013-evolution-a459b3d5d3b8ac939b0c694ec3d0e743d1d193d4.zip |
Fixed an uninitialized variable.
2000-09-13 Christopher James Lahey <clahey@helixcode.com>
* e-font.c: Fixed an uninitialized variable.
svn path=/trunk/; revision=5407
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; |