aboutsummaryrefslogtreecommitdiff
path: root/mail/elm+ME/files
diff options
context:
space:
mode:
authorJohan van Selst <johans@FreeBSD.org>2007-12-12 18:02:33 +0000
committerJohan van Selst <johans@FreeBSD.org>2007-12-12 18:02:33 +0000
commitb9401a2b68133fb389127bd42c0bf37bd0cbc69e (patch)
tree548b47f590bc33ef8a967f4f9bd4f1d58c2894fc /mail/elm+ME/files
parent1438b8e99c221d98a9027a3c8030458af478af73 (diff)
- Update to 2.4.124a
- Remove obsolete patch from mi@ (now included in distribution)
Notes
Notes: svn path=/head/; revision=203366
Diffstat (limited to 'mail/elm+ME/files')
-rw-r--r--mail/elm+ME/files/patch-search-fix24
1 files changed, 0 insertions, 24 deletions
diff --git a/mail/elm+ME/files/patch-search-fix b/mail/elm+ME/files/patch-search-fix
deleted file mode 100644
index 8f378c3156ff..000000000000
--- a/mail/elm+ME/files/patch-search-fix
+++ /dev/null
@@ -1,24 +0,0 @@
-The meaningful part of the patch obtained from Kari E. Hurtta
-(elm+ME maintainer), which fixes a double-free in parsing of
-certain MIME e-mails. The patch should be included in the next
-release of elm.
-
---- melib/mime_decode.c 25 Aug 2007 11:51:51 -0000 2.0
-+++ melib/mime_decode.c 28 Oct 2007 07:39:29 -0000 2.2
-@@ -2525,11 +2525,13 @@
- unlink(fname); /* Unlink was delayed */
- *name = NULL;
- }
-- free(fname);
-- }
-
-- if (!name)
- free(fname);
-+
-+ } else {
-+ if (!name)
-+ free(fname);
-+ }
- return tmpfp;
- }
-