From owner-svn-ports-head@freebsd.org Fri Dec 8 20:35:33 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DB0EDE8E989; Fri, 8 Dec 2017 20:35:33 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A4F883BCF; Fri, 8 Dec 2017 20:35:33 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vB8KZWt7012297; Fri, 8 Dec 2017 20:35:32 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vB8KZW6e012295; Fri, 8 Dec 2017 20:35:32 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201712082035.vB8KZW6e012295@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 8 Dec 2017 20:35:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r455800 - in head/mail/procmail: . files X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/mail/procmail: . files X-SVN-Commit-Revision: 455800 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2017 20:35:34 -0000 Author: sunpoet Date: Fri Dec 8 20:35:32 2017 New Revision: 455800 URL: https://svnweb.freebsd.org/changeset/ports/455800 Log: Fix CVE-2017-16844 - Bump PORTREVISION for package change PR: 223777 Submitted by: Jeremy Chadwick , romain Security: 288f7cee-ced6-11e7-8ae9-0050569f0b83 MFH: 2017Q4 Modified: head/mail/procmail/Makefile head/mail/procmail/files/patch-src-formisc.c Modified: head/mail/procmail/Makefile ============================================================================== --- head/mail/procmail/Makefile Fri Dec 8 20:35:26 2017 (r455799) +++ head/mail/procmail/Makefile Fri Dec 8 20:35:32 2017 (r455800) @@ -3,7 +3,7 @@ PORTNAME= procmail PORTVERSION= 3.22 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= mail MASTER_SITES= ftp://ftp.ucsb.edu/pub/mirrors/procmail/ \ ftp://ftp.informatik.rwth-aachen.de/pub/packages/procmail/ \ Modified: head/mail/procmail/files/patch-src-formisc.c ============================================================================== --- head/mail/procmail/files/patch-src-formisc.c Fri Dec 8 20:35:26 2017 (r455799) +++ head/mail/procmail/files/patch-src-formisc.c Fri Dec 8 20:35:32 2017 (r455800) @@ -14,3 +14,12 @@ } hitspc=2; } +@@ -104,7 +103,7 @@ + } + /* append to buf */ + void loadbuf(text,len)const char*const text;const size_t len; +-{ if(buffilled+len>buflen) /* buf can't hold the text */ ++{ while(buffilled+len>buflen) /* buf can't hold the text */ + buf=realloc(buf,buflen+=Bsize); + tmemmove(buf+buffilled,text,len);buffilled+=len; + }