summaryrefslogtreecommitdiff
path: root/mail/mutt/files/patch-imap-message.c
diff options
context:
space:
mode:
authorAdam Weinberger <adamw@FreeBSD.org>2016-10-17 02:40:41 +0000
committerAdam Weinberger <adamw@FreeBSD.org>2016-10-17 02:40:41 +0000
commitda35507d98214f7d77401cf30df3ae0a8f638851 (patch)
tree334b86a48351a09d2c122492ad30ab7d111d9f26 /mail/mutt/files/patch-imap-message.c
parent- Update to 1.9.160630 (diff)
- Update to 1.7.1
- Move some vars around to make portlint happy - Use MUTT_LITE instead of LITE - Fetch deepif and date-contitional from remote locations - Reword COMMENT - Bring back remote patch versions incase mutt version and patch versions arn't in sync - Remove date_conditional patch pulled in remotely - Add two new sidebar samples - convert patch-* patches to makepatch patches - Greeting patch 1.7.1 now PATCHFILE - make makesum will pull all optional dist/patchfiles PR: 213431 Submitted by: maintainer (dereks lifeofadishwasher com)
Diffstat (limited to 'mail/mutt/files/patch-imap-message.c')
-rw-r--r--mail/mutt/files/patch-imap-message.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/mail/mutt/files/patch-imap-message.c b/mail/mutt/files/patch-imap-message.c
deleted file mode 100644
index 7db99b5da207..000000000000
--- a/mail/mutt/files/patch-imap-message.c
+++ /dev/null
@@ -1,15 +0,0 @@
-This patch fixes a segfault that happens when the IMAP server sends some
-additional flags for the same message ID, see upstream bug
-http://bugs.mutt.org/3288
-
---- imap/message.c
-+++ imap/message.c
-@@ -288,7 +288,7 @@
- continue;
- }
- /* May receive FLAGS updates in a separate untagged response (#2935) */
-- if (idx < ctx->msgcount)
-+ if (ctx->hdrs[idx] != NULL)
- {
- dprint (2, (debugfile, "imap_read_headers: message %d is not new\n",
- h.sid));