diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-09-24 18:36:34 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-09-24 18:36:34 +0000 |
commit | 88f397c1b8e71c24122f245257dec9161a49c005 (patch) | |
tree | 6514a8c0700ba997853e81ee62ff5262269b7ba3 | |
parent | 03569c5c12d7ace82c1efcc22dddd4203aac5275 (diff) | |
download | fetchmail-88f397c1b8e71c24122f245257dec9161a49c005.tar.gz fetchmail-88f397c1b8e71c24122f245257dec9161a49c005.tar.bz2 fetchmail-88f397c1b8e71c24122f245257dec9161a49c005.zip |
Prevent buffer overrun.
svn path=/trunk/; revision=123
-rw-r--r-- | fetchmail.h | 2 |
1 files changed, 1 insertions, 1 deletions
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; |