From: Rocco Rutte Date: Tue, 2 Jun 2009 15:05:15 +0000 (+0200) Subject: Fix array size X-Git-Tag: neomutt-20160307~610 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=450d4eadef7c7b1454745ce3d0460f74b80835e8;p=neomutt Fix array size --- diff --git a/smtp.c b/smtp.c index 30221745f..3c9df528d 100644 --- a/smtp.c +++ b/smtp.c @@ -79,7 +79,7 @@ static unsigned char Capabilities[(CAPMAX + 7)/ 8]; static int smtp_code (char *buf, size_t len, int *n) { - char code[3]; + char code[4]; if (len < 4) return -1;