GUAC-847: Add pointless initialization to satisfy false-positive warnings.

This commit is contained in:
Michael Jumper 2014-09-08 12:30:09 -07:00
parent 4f5760af94
commit eb39afc68a

View File

@ -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];