From c36c9b9e96083cdf0a09de3123694c1d70021880 Mon Sep 17 00:00:00 2001 From: Yann Diorcet Date: Thu, 13 Dec 2012 19:08:44 +0100 Subject: [PATCH] Fix uninitialized in xml2lpc_test --- tools/xml2lpc_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/xml2lpc_test.c b/tools/xml2lpc_test.c index cac2965ef..e99b90bd8 100644 --- a/tools/xml2lpc_test.c +++ b/tools/xml2lpc_test.c @@ -21,7 +21,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "xml2lpc.h" void cb_function(void *ctx, xml2lpc_log_level level, const char *msg, va_list list) { - const char *header; + const char *header = ""; switch(level) { case XML2LPC_DEBUG: header = "DEBUG";