From eb39afc68a0e7ad2aa3e7740f65a4816553357bf Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Mon, 8 Sep 2014 12:30:09 -0700 Subject: [PATCH] GUAC-847: Add pointless initialization to satisfy false-positive warnings. --- src/guacd/conf-file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guacd/conf-file.c b/src/guacd/conf-file.c index c264a900..29fd679d 100644 --- a/src/guacd/conf-file.c +++ b/src/guacd/conf-file.c @@ -106,7 +106,7 @@ static int guacd_conf_callback(const char* section, const char* param, const cha int guacd_conf_parse_file(guacd_config* conf, int fd) { int line = 1; - char* line_start; + char* line_start = NULL; /* Pointless initialization, but this is not obvious enough for some compilers */ int parsed = 0; char buffer[8192];