diff options
author | ache <ache@FreeBSD.org> | 1996-09-22 14:57:00 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1996-09-22 14:57:00 +0000 |
commit | 1c313429bb37825250e41aaa0084295083255775 (patch) | |
tree | 0d83c4f871853b6d0854c8af9cbbe4fd97e5339b /usr.sbin/sendmail | |
parent | b11dd427e09994120c844abf07bb95048b7ab6b6 (diff) | |
download | FreeBSD-src-1c313429bb37825250e41aaa0084295083255775.zip FreeBSD-src-1c313429bb37825250e41aaa0084295083255775.tar.gz |
Fix one byte buffer overflow
Submitted by: Eric Allman <eric@sendmail.org>
Diffstat (limited to 'usr.sbin/sendmail')
-rw-r--r-- | usr.sbin/sendmail/src/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/sendmail/src/util.c b/usr.sbin/sendmail/src/util.c index b492a2e..7abc671 100644 --- a/usr.sbin/sendmail/src/util.c +++ b/usr.sbin/sendmail/src/util.c @@ -1884,7 +1884,7 @@ get_column(line, col, delim, buf, buflen) char *p; char *begin, *end; int i; - char delimbuf[3]; + char delimbuf[4]; if (delim == '\0') strcpy(delimbuf, "\n\t "); |