diff options
| author | Sam Varshavchik | 2015-06-27 13:26:50 -0400 | 
|---|---|---|
| committer | Sam Varshavchik | 2015-06-27 13:26:50 -0400 | 
| commit | 174541a2e670c0ee70fd2fb3116209f96ecc173e (patch) | |
| tree | ab31a41aca11ccad42c120ff0abe7e32fd29762f /maildrop/mailbot.c | |
| parent | 67b9324b4d78f3fc5cb92e0b024c1c5cfca5a39b (diff) | |
| download | courier-libs-174541a2e670c0ee70fd2fb3116209f96ecc173e.tar.bz2 | |
Fix some bounds checking issues. Added ESMTP_PREFER_IPV6_MX setting.
Diffstat (limited to 'maildrop/mailbot.c')
| -rw-r--r-- | maildrop/mailbot.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/maildrop/mailbot.c b/maildrop/mailbot.c index f49bbd9..8dfe551 100644 --- a/maildrop/mailbot.c +++ b/maildrop/mailbot.c @@ -1,5 +1,5 @@  /* -** Copyright 2001-2014 Double Precision, Inc. +** Copyright 2001-2015 Double Precision, Inc.  ** See COPYING for distribution information.  */ @@ -977,7 +977,7 @@ int main(int argc, char **argv)  			const char **strp;  			replyinfo.info.feedbackheaders= -				strp=malloc(sizeof(char *) * 2 * fb_cnt+1); +				strp=malloc(sizeof(char *) * ( 2 * fb_cnt+1 ));  			for (i=0, p=fb_list; p; p=p->next)  			{ | 
