From owner-svn-ports-branches@freebsd.org Tue Dec 12 11:45:14 2017 Return-Path: Delivered-To: svn-ports-branches@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 3C5FEE95668; Tue, 12 Dec 2017 11:45:14 +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 07EB3782ED; Tue, 12 Dec 2017 11:45:13 +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 vBCBjD9l026644; Tue, 12 Dec 2017 11:45:13 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBCBjDOg026642; Tue, 12 Dec 2017 11:45:13 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201712121145.vBCBjDOg026642@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 12 Dec 2017 11:45:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r456121 - in branches/2017Q4/mail/procmail: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in branches/2017Q4/mail/procmail: . files X-SVN-Commit-Revision: 456121 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Dec 2017 11:45:14 -0000 Author: sunpoet Date: Tue Dec 12 11:45:12 2017 New Revision: 456121 URL: https://svnweb.freebsd.org/changeset/ports/456121 Log: MFH: r455800 Fix CVE-2017-16844 - Bump PORTREVISION for package change PR: 223777 Submitted by: Jeremy Chadwick , romain Security: 288f7cee-ced6-11e7-8ae9-0050569f0b83 Approved by: ports-secteam (swills) Modified: branches/2017Q4/mail/procmail/Makefile branches/2017Q4/mail/procmail/files/patch-src-formisc.c Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/mail/procmail/Makefile ============================================================================== --- branches/2017Q4/mail/procmail/Makefile Tue Dec 12 11:40:45 2017 (r456120) +++ branches/2017Q4/mail/procmail/Makefile Tue Dec 12 11:45:12 2017 (r456121) @@ -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: branches/2017Q4/mail/procmail/files/patch-src-formisc.c ============================================================================== --- branches/2017Q4/mail/procmail/files/patch-src-formisc.c Tue Dec 12 11:40:45 2017 (r456120) +++ branches/2017Q4/mail/procmail/files/patch-src-formisc.c Tue Dec 12 11:45:12 2017 (r456121) @@ -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; + }