From b0b61a0724c7a9753f5d5e97166077c4dcecc617 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Fri, 15 Jan 2010 21:57:39 -0500 Subject: Fix a potential uninitialized argument in ech_config_section_factory(). Caught by the Clang Static Analyzer. --- e-util/e-config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'e-util/e-config.c') 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; -- cgit v1.2.3