diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-01-16 10:57:39 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-01-16 10:57:39 +0800 |
commit | b0b61a0724c7a9753f5d5e97166077c4dcecc617 (patch) | |
tree | 97644c270f1145ed76e9f876f7dd3a6cd12a9983 /e-util | |
parent | 30c7ead06032ec0b6945e9f03db01f50645bf621 (diff) | |
download | gsoc2013-evolution-b0b61a0724c7a9753f5d5e97166077c4dcecc617.tar.gz 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.
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/e-config.c | 2 |
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; |