diff options
author | Miroslav Šulc <fordfrog@gentoo.org> | 2020-09-23 12:55:41 +0200 |
---|---|---|
committer | Miroslav Šulc <fordfrog@gentoo.org> | 2020-09-23 12:55:41 +0200 |
commit | c574cc18eb7168adda8308d5f0bd727088d6b8c1 (patch) | |
tree | b624965a5e0d2715a2f85e4375b8179f67613de3 /dev-libs/sord/files | |
parent | media-plugins/libvisual-plugins: removed obsolete 0.4.0-r3 (diff) | |
download | gentoo-c574cc18eb7168adda8308d5f0bd727088d6b8c1.tar.gz gentoo-c574cc18eb7168adda8308d5f0bd727088d6b8c1.tar.bz2 gentoo-c574cc18eb7168adda8308d5f0bd727088d6b8c1.zip |
dev-libs/sord: removed obsolete 0.16.4-r1
Closes: https://bugs.gentoo.org/742707
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'dev-libs/sord/files')
-rw-r--r-- | dev-libs/sord/files/sord-0.16.4-gcc10.patch | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/dev-libs/sord/files/sord-0.16.4-gcc10.patch b/dev-libs/sord/files/sord-0.16.4-gcc10.patch deleted file mode 100644 index a793b335a0a6..000000000000 --- a/dev-libs/sord/files/sord-0.16.4-gcc10.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 --- -2.28.0 - |