Silence a (harmless) uninitialized variable warning.
authorPeter Maydell <pmaydell@chiark.greenend.org.uk>
Fri, 5 Nov 2010 22:06:10 +0000 (22:06 +0000)
committerPeter Maydell <pmaydell@chiark.greenend.org.uk>
Fri, 5 Nov 2010 22:06:10 +0000 (22:06 +0000)
mts/smtp/smtp.c

index ab70c24..7413639 100644 (file)
@@ -1208,7 +1208,7 @@ sm_werror (void)
 static int
 smhear (void)
 {
-    int i, code, cont, bc, rc, more;
+    int i, code, cont, bc = 0, rc, more;
     unsigned char *bp;
     char *rp;
     char **ehlo = NULL, buffer[BUFSIZ];