diff options
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.patch | 25 |
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 - |