summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2022-07-15 20:28:10 +0200
committerMiroslav Šulc <fordfrog@gentoo.org>2022-07-16 05:29:51 +0200
commit7502c88bc8b72399e5f31559654180097a0cd54d (patch)
tree31f78bde3f51c50a5ead5cfc0232cbe4dba1a662 /dev-libs/sord
parentdev-java/jna: remove unused patch (diff)
downloadgentoo-7502c88bc8b72399e5f31559654180097a0cd54d.tar.gz
gentoo-7502c88bc8b72399e5f31559654180097a0cd54d.tar.bz2
gentoo-7502c88bc8b72399e5f31559654180097a0cd54d.zip
dev-libs/sord: remove unused patch(es)
Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/26422 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'dev-libs/sord')
-rw-r--r--dev-libs/sord/files/sord-0.16.8-fix-crash-with-optimized-builds-with-gcc-10.1.0.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/dev-libs/sord/files/sord-0.16.8-fix-crash-with-optimized-builds-with-gcc-10.1.0.patch b/dev-libs/sord/files/sord-0.16.8-fix-crash-with-optimized-builds-with-gcc-10.1.0.patch
deleted file mode 100644
index c7f3e66c79f9..000000000000
--- a/dev-libs/sord/files/sord-0.16.8-fix-crash-with-optimized-builds-with-gcc-10.1.0.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 616517f44ceeacb26592e50e2bf914aad2d93b90 Mon Sep 17 00:00:00 2001
-From: David Robillard <d@drobilla.net>
-Date: Fri, 17 Jul 2020 15:38:38 +0200
-Subject: [PATCH] Fix crash with optimized builds with GCC 10.1.0
-
----
- src/zix/btree.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/zix/btree.c b/src/zix/btree.c
-index 78a5a0d..d830008 100644
---- a/src/zix/btree.c
-+++ b/src/zix/btree.c
-@@ -689,7 +689,7 @@ zix_btree_begin(const ZixBTree* const t)
- ZIX_API bool
- zix_btree_iter_is_end(const ZixBTreeIter* const i)
- {
-- return !i || i->stack[0].node == NULL;
-+ return !i || (i->level == 0 && i->stack[0].node == NULL);
- }
-
- ZIX_API void
---
-GitLab
-