From owner-svn-ports-all@freebsd.org Sat Sep 26 13:08:20 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 42D173FE742; Sat, 26 Sep 2020 13:08:20 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Bz8Gr0Hd2z4Zpy; Sat, 26 Sep 2020 13:08:20 +0000 (UTC) (envelope-from zeising@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E293C246AE; Sat, 26 Sep 2020 13:08:19 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08QD8JZs008233; Sat, 26 Sep 2020 13:08:19 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08QD8Jh3008232; Sat, 26 Sep 2020 13:08:19 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <202009261308.08QD8Jh3008232@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Sat, 26 Sep 2020 13:08:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r550180 - in branches/2020Q3/x11-toolkits/pango: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: in branches/2020Q3/x11-toolkits/pango: . files X-SVN-Commit-Revision: 550180 X-SVN-Commit-Repository: ports 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.33 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: Sat, 26 Sep 2020 13:08:20 -0000 Author: zeising Date: Sat Sep 26 13:08:19 2020 New Revision: 550180 URL: https://svnweb.freebsd.org/changeset/ports/550180 Log: MFH: r550179 x11/toolcits-pango: Actually apply security patch Rename the patch that fixes CVE-2010-1010238 so that it is actually applied when building pango. Regenerate it using make makepatch bump portrevision Reported by: tobik Security: 456375e1-cd09-11ea-9172-4c72b94353b5 Approved by: ports-secteam (implicit, security fix) Added: branches/2020Q3/x11-toolkits/pango/files/patch-CVE-20191010238.c - copied unchanged from r550179, head/x11-toolkits/pango/files/patch-CVE-20191010238.c Deleted: branches/2020Q3/x11-toolkits/pango/files/CVE-20191010238 Modified: branches/2020Q3/x11-toolkits/pango/Makefile Directory Properties: branches/2020Q3/ (props changed) Modified: branches/2020Q3/x11-toolkits/pango/Makefile ============================================================================== --- branches/2020Q3/x11-toolkits/pango/Makefile Sat Sep 26 13:06:35 2020 (r550179) +++ branches/2020Q3/x11-toolkits/pango/Makefile Sat Sep 26 13:08:19 2020 (r550180) @@ -3,7 +3,7 @@ PORTNAME= pango PORTVERSION= 1.42.4 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= x11-toolkits MASTER_SITES= GNOME DIST_SUBDIR= gnome2 Copied: branches/2020Q3/x11-toolkits/pango/files/patch-CVE-20191010238.c (from r550179, head/x11-toolkits/pango/files/patch-CVE-20191010238.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2020Q3/x11-toolkits/pango/files/patch-CVE-20191010238.c Sat Sep 26 13:08:19 2020 (r550180, copy of r550179, head/x11-toolkits/pango/files/patch-CVE-20191010238.c) @@ -0,0 +1,16 @@ +--- pango/pango-bidi-type.c.orig 2018-07-28 15:15:28 UTC ++++ pango/pango-bidi-type.c +@@ -179,8 +179,11 @@ pango_log2vis_get_embedding_levels (const gchar *te + for (i = 0, p = text; p < text + length; p = g_utf8_next_char(p), i++) + { + gunichar ch = g_utf8_get_char (p); +- FriBidiCharType char_type; +- char_type = fribidi_get_bidi_type (ch); ++ FriBidiCharType char_type = fribidi_get_bidi_type (ch); ++ ++ if (i == n_chars) ++ break; ++ + bidi_types[i] = char_type; + ored_types |= char_type; + if (FRIBIDI_IS_STRONG (char_type))