Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/isl/files/
Date: Thu, 21 May 2020 08:22:55
Message-Id: 1590049363.3933fab363f87b3a69bc2a59c9d3abe8ed094788.slyfox@gentoo
1 commit: 3933fab363f87b3a69bc2a59c9d3abe8ed094788
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Wed May 20 15:30:45 2020 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Thu May 21 08:22:43 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3933fab3
7
8 dev-libs/isl: remove unused patch
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
12 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
13
14 dev-libs/isl/files/isl-0.22-bmap-nullderef.patch | 34 ------------------------
15 1 file changed, 34 deletions(-)
16
17 diff --git a/dev-libs/isl/files/isl-0.22-bmap-nullderef.patch b/dev-libs/isl/files/isl-0.22-bmap-nullderef.patch
18 deleted file mode 100644
19 index 00104f1f432..00000000000
20 --- a/dev-libs/isl/files/isl-0.22-bmap-nullderef.patch
21 +++ /dev/null
22 @@ -1,34 +0,0 @@
23 -https://groups.google.com/forum/#!original/isl-development/Otz1QKZDpzA/71GkTvqkCAAJ
24 -https://bugs.gentoo.org/702968
25 -
26 -Subject: [MAINT PATCH] isl_basic_map_underlying_set: fix error handling
27 -Date: Tue, 7 Jan 2020 23:02:42 +0100
28 -Message-Id: <20200107220242...@××××××.org>
29 -X-Mailer: git-send-email 2.24.1.591.g12029dc57d
30 -MIME-Version: 1.0
31 -Content-Transfer-Encoding: 8bit
32 -From: Sven Verdoolaege <sven.ve...@×××××.com>
33 -
34 -The check for a valid bmap before accessing its n_div field
35 -was inadvertently removed in isl-0.21-230-g6a4c4bbf31 (isl_map.c:
36 -extract out shared isl_basic_map_{take,restore}_space,
37 -Thu Aug 11 10:27:49 2016 +0200).
38 -
39 -Reported-by: Richard Biener <rgue...@××××.de>
40 -Signed-off-by: Sven Verdoolaege <sven.ve...@×××××.com>
41 ----
42 - isl_map.c | 2 ++
43 - 1 file changed, 2 insertions(+)
44 ---- a/isl_map.c
45 -+++ b/isl_map.c
46 -@@ -5511,6 +5511,8 @@ __isl_give isl_basic_set *isl_basic_map_underlying_set(
47 - !isl_space_is_named_or_nested(bmap->dim, isl_dim_out))
48 - return bset_from_bmap(bmap);
49 - bmap = isl_basic_map_cow(bmap);
50 -+ if (!bmap)
51 -+ return NULL;
52 - space = isl_basic_map_take_space(bmap);
53 - space = isl_space_underlying(space, bmap->n_div);
54 - bmap = isl_basic_map_restore_space(bmap, space);
55 ---
56 -2.24.1.591.g12029dc57d