summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2022-05-26 20:13:00 +0200
committerConrad Kostecki <conikost@gentoo.org>2022-05-26 22:30:33 +0200
commit8a998cf457131f6e2b614929809d71f1ded06aa3 (patch)
tree2bc0b7b9fec43fabb64c2f5494023103bb7484bf /mail-client
parentapp-misc/tmuxp: remove unused patch (diff)
downloadgentoo-8a998cf457131f6e2b614929809d71f1ded06aa3.tar.gz
gentoo-8a998cf457131f6e2b614929809d71f1ded06aa3.tar.bz2
gentoo-8a998cf457131f6e2b614929809d71f1ded06aa3.zip
mail-client/neomutt: 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/25648 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'mail-client')
-rw-r--r--mail-client/neomutt/files/0001-Fix-seqset-iterator-when-it-ends-in-a-comma.patch37
1 files changed, 0 insertions, 37 deletions
diff --git a/mail-client/neomutt/files/0001-Fix-seqset-iterator-when-it-ends-in-a-comma.patch b/mail-client/neomutt/files/0001-Fix-seqset-iterator-when-it-ends-in-a-comma.patch
deleted file mode 100644
index 06f31ffeb46b..000000000000
--- a/mail-client/neomutt/files/0001-Fix-seqset-iterator-when-it-ends-in-a-comma.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From fa1db5785e5cfd9d3cd27b7571b9fe268d2ec2dc Mon Sep 17 00:00:00 2001
-From: Kevin McCarthy <kevin@8t8.us>
-Date: Mon, 3 May 2021 13:11:30 -0700
-Subject: [PATCH] Fix seqset iterator when it ends in a comma
-
-If the seqset ended with a comma, the substr_end marker would be just
-before the trailing nul. In the next call, the loop to skip the
-marker would iterate right past the end of string too.
-
-The fix is simple: place the substr_end marker and skip past it
-immediately.
----
- imap/util.c | 4 +---
- 1 file changed, 1 insertion(+), 3 deletions(-)
-
-diff --git a/imap/util.c b/imap/util.c
-index 52aff7da0..27fb86295 100644
---- a/imap/util.c
-+++ b/imap/util.c
-@@ -1119,13 +1119,11 @@ int mutt_seqset_iterator_next(struct SeqsetIterator *iter, unsigned int *next)
- if (iter->substr_cur == iter->eostr)
- return 1;
-
-- while (!*(iter->substr_cur))
-- iter->substr_cur++;
- iter->substr_end = strchr(iter->substr_cur, ',');
- if (!iter->substr_end)
- iter->substr_end = iter->eostr;
- else
-- *(iter->substr_end) = '\0';
-+ *(iter->substr_end++) = '\0';
-
- char *range_sep = strchr(iter->substr_cur, ':');
- if (range_sep)
---
-2.30.2
-