aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-01-16 10:57:39 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-01-16 10:57:39 +0800
commitb0b61a0724c7a9753f5d5e97166077c4dcecc617 (patch)
tree97644c270f1145ed76e9f876f7dd3a6cd12a9983
parent30c7ead06032ec0b6945e9f03db01f50645bf621 (diff)
downloadgsoc2013-evolution-b0b61a0724c7a9753f5d5e97166077c4dcecc617.tar
gsoc2013-evolution-b0b61a0724c7a9753f5d5e97166077c4dcecc617.tar.gz
gsoc2013-evolution-b0b61a0724c7a9753f5d5e97166077c4dcecc617.tar.bz2
gsoc2013-evolution-b0b61a0724c7a9753f5d5e97166077c4dcecc617.tar.lz
gsoc2013-evolution-b0b61a0724c7a9753f5d5e97166077c4dcecc617.tar.xz
gsoc2013-evolution-b0b61a0724c7a9753f5d5e97166077c4dcecc617.tar.zst
gsoc2013-evolution-b0b61a0724c7a9753f5d5e97166077c4dcecc617.zip
Fix a potential uninitialized argument in ech_config_section_factory().
Caught by the Clang Static Analyzer.
-rw-r--r--e-util/e-config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/e-util/e-config.c b/e-util/e-config.c
index 038e54f00c..25b12355a9 100644
--- a/e-util/e-config.c
+++ b/e-util/e-config.c
@@ -1587,7 +1587,7 @@ ech_config_section_factory (EConfig *config,
gpointer data)
{
struct _EConfigHookGroup *group = data;
- GtkWidget *label;
+ GtkWidget *label = NULL;
GtkWidget *widget;
EPlugin *plugin;