From 88f397c1b8e71c24122f245257dec9161a49c005 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Tue, 24 Sep 1996 18:36:34 +0000 Subject: Prevent buffer overrun. svn path=/trunk/; revision=123 --- fetchmail.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fetchmail.h b/fetchmail.h index d1186803..d33a9599 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -73,7 +73,7 @@ struct hostrec int port; /* state used for tracking UIDL ids */ - char lastid [IDLEN]; + char lastid [IDLEN+1]; /* dependent on the above members */ int output; -- cgit v1.2.3