summaryrefslogtreecommitdiff
path: root/mail/mutt/patches/patch-ai
diff options
context:
space:
mode:
Diffstat (limited to 'mail/mutt/patches/patch-ai')
-rw-r--r--mail/mutt/patches/patch-ai17
1 files changed, 0 insertions, 17 deletions
diff --git a/mail/mutt/patches/patch-ai b/mail/mutt/patches/patch-ai
deleted file mode 100644
index bde48e1abc9..00000000000
--- a/mail/mutt/patches/patch-ai
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-ai,v 1.3 2001/05/10 14:25:35 agc Exp $
-
-If Subject is NULL, don't try to dereference it.
-
---- rfc2047.c 2001/05/10 14:11:38 1.1
-+++ rfc2047.c 2001/05/10 14:12:35
-@@ -390,6 +390,10 @@
-
- dlen--; /* save room for the terminal nul */
-
-+ if (s == NULL) {
-+ return;
-+ }
-+
- while (*s && dlen > 0)
- {
- if ((p = strstr (s, "=?")) == NULL ||