diff options
author | Milan Crha <mcrha@redhat.com> | 2011-09-30 21:39:57 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2011-09-30 21:39:57 +0800 |
commit | 4c56856e05c6ab1468fe8ace4b73ac31b333990b (patch) | |
tree | 98304dd391494a7f9cc1aecebb99fe3b0f328377 /addressbook/gui/widgets | |
parent | 2def4a73864c87c4dee25b04180c882e72a0fee1 (diff) | |
download | gsoc2013-evolution-4c56856e05c6ab1468fe8ace4b73ac31b333990b.tar gsoc2013-evolution-4c56856e05c6ab1468fe8ace4b73ac31b333990b.tar.gz gsoc2013-evolution-4c56856e05c6ab1468fe8ace4b73ac31b333990b.tar.bz2 gsoc2013-evolution-4c56856e05c6ab1468fe8ace4b73ac31b333990b.tar.lz gsoc2013-evolution-4c56856e05c6ab1468fe8ace4b73ac31b333990b.tar.xz gsoc2013-evolution-4c56856e05c6ab1468fe8ace4b73ac31b333990b.tar.zst gsoc2013-evolution-4c56856e05c6ab1468fe8ace4b73ac31b333990b.zip |
Fix few 'may be used uninitialized' compiler warnings
Diffstat (limited to 'addressbook/gui/widgets')
-rw-r--r-- | addressbook/gui/widgets/eab-gui-util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/gui/widgets/eab-gui-util.c b/addressbook/gui/widgets/eab-gui-util.c index 00f4e884c7..6994af2b88 100644 --- a/addressbook/gui/widgets/eab-gui-util.c +++ b/addressbook/gui/widgets/eab-gui-util.c @@ -735,7 +735,7 @@ country_to_ISO (const gchar *country) } while (fgets (buffer, length, file) != NULL) { - gchar *low; + gchar *low = NULL; pair = g_strsplit (buffer, "\t", 2); if (pair[0]) { |