* debian/patches:
+ upstream/533370-pgp-inline.patch: fixing the patch from 1.5.20-3, now
pgp.c is correctly included (Closes: 533370)
+ + upstream/537694-segv-imap-headers.patch: fixing a segfault when the IMAP
+ server sends additional headers and mutt segfaults (Closes: 537694)
-- Antonio Radici <antonio@dyne.org> Wed, 16 Sep 2009 22:31:22 +0100
--- /dev/null
+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
+
+--- a/imap/message.c
++++ b/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));