From owner-svn-ports-all@FreeBSD.ORG Fri Sep 12 07:41:09 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E8660324; Fri, 12 Sep 2014 07:41:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 D3BAF812; Fri, 12 Sep 2014 07:41:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s8C7f9tS057465; Fri, 12 Sep 2014 07:41:09 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s8C7f924057463; Fri, 12 Sep 2014 07:41:09 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201409120741.s8C7f924057463@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 12 Sep 2014 07:41:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r368009 - in head/mail/procmail: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Sep 2014 07:41:10 -0000 Author: sunpoet Date: Fri Sep 12 07:41:09 2014 New Revision: 368009 URL: http://svnweb.freebsd.org/changeset/ports/368009 QAT: https://qat.redports.org/buildarchive/r368009/ Log: - Fix heap-based buffer overflow in formisc.c - Bump PORTREVISION for package change Security: CVE-2014-3618 MFH: 2014Q3 Added: head/mail/procmail/files/patch-src-formisc.c (contents, props changed) Modified: head/mail/procmail/Makefile Modified: head/mail/procmail/Makefile ============================================================================== --- head/mail/procmail/Makefile Fri Sep 12 07:08:41 2014 (r368008) +++ head/mail/procmail/Makefile Fri Sep 12 07:41:09 2014 (r368009) @@ -3,7 +3,7 @@ PORTNAME= procmail PORTVERSION= 3.22 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= mail MASTER_SITES= ftp://ftp.ucsb.edu/pub/mirrors/procmail/ \ ftp://ftp.informatik.rwth-aachen.de/pub/packages/procmail/ \ Added: head/mail/procmail/files/patch-src-formisc.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/procmail/files/patch-src-formisc.c Fri Sep 12 07:41:09 2014 (r368009) @@ -0,0 +1,16 @@ +--- src/formisc.c.orig 2001-06-29 10:20:45.000000000 +0800 ++++ src/formisc.c 2014-09-12 00:58:12.989105253 +0800 +@@ -84,12 +84,11 @@ + case '"':*target++=delim='"';start++; + } + ;{ int i; +- do ++ while(*start) + if((i= *target++= *start++)==delim) /* corresponding delimiter? */ + break; + else if(i=='\\'&&*start) /* skip quoted character */ + *target++= *start++; +- while(*start); /* anything? */ + } + hitspc=2; + }