Browse Source

Avoid spurious gcc warning

bel2125 8 years ago
parent
commit
65e8cda646
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/civetweb.c

+ 1 - 1
src/civetweb.c

@@ -7698,7 +7698,7 @@ static void
 addenv(struct cgi_environment *env, const char *fmt, ...)
 {
 	size_t n, space;
-	int truncated;
+	int truncated = 0;
 	char *added;
 	va_list ap;