From owner-svn-ports-branches@freebsd.org Mon Jul 20 15:22:34 2015 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 1CFA49A6BC6; Mon, 20 Jul 2015 15:22:34 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.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 E7ED02C2E; Mon, 20 Jul 2015 15:22:33 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t6KFMXwr020105; Mon, 20 Jul 2015 15:22:33 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t6KFMXPF020103; Mon, 20 Jul 2015 15:22:33 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201507201522.t6KFMXPF020103@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Mon, 20 Jul 2015 15:22:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r392588 - in branches/2015Q3/devel/pcre: . files X-SVN-Group: ports-branches 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.20 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: Mon, 20 Jul 2015 15:22:34 -0000 Author: feld Date: Mon Jul 20 15:22:32 2015 New Revision: 392588 URL: https://svnweb.freebsd.org/changeset/ports/392588 Log: MFH: r392587 Apply upstream fixes for a buffer overflow issue: 1571 Fix buffer overflow for forward reference within backward assertion with excess closing parenthesis. Bugzilla 1651. Obtained from: PCRE svn (r1571) Security: 8a1d0e63-1e07-11e5-b43d-002590263bf5 Security: CVE-2015-5073 PR: 201188 Approved by: ports-secteam (with hat) Added: branches/2015Q3/devel/pcre/files/patch-CVE-2015-5073 - copied unchanged from r392587, head/devel/pcre/files/patch-CVE-2015-5073 Modified: branches/2015Q3/devel/pcre/Makefile Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/devel/pcre/Makefile ============================================================================== --- branches/2015Q3/devel/pcre/Makefile Mon Jul 20 15:21:25 2015 (r392587) +++ branches/2015Q3/devel/pcre/Makefile Mon Jul 20 15:22:32 2015 (r392588) @@ -3,7 +3,7 @@ PORTNAME= pcre PORTVERSION= 8.37 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION} \ ftp://ftp.csx.cam.ac.uk/pub/software/programming/${PORTNAME}/ \ Copied: branches/2015Q3/devel/pcre/files/patch-CVE-2015-5073 (from r392587, head/devel/pcre/files/patch-CVE-2015-5073) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2015Q3/devel/pcre/files/patch-CVE-2015-5073 Mon Jul 20 15:22:32 2015 (r392588, copy of r392587, head/devel/pcre/files/patch-CVE-2015-5073) @@ -0,0 +1,11 @@ +--- pcre_compile.c.orig 2015/06/22 09:38:41 1570 ++++ pcre_compile.c 2015/06/23 16:34:53 1571 +@@ -9449,7 +9449,7 @@ + exceptional ones forgo this. We scan the pattern to check that they are fixed + length, and set their lengths. */ + +-if (cd->check_lookbehind) ++if (errorcode == 0 && cd->check_lookbehind) + { + pcre_uchar *cc = (pcre_uchar *)codestart; +