- add the 27-int-size patch to cast a variable to the correct type
- add the 28-valid-recipient patch to fix parsing recipients out of
the message body
+ - add the 29-double-free patch to fix a double-free error
- refresh 01-debian-build, 03-debian-locations, 04-debian-setgid,
09-typos, 10-liblockfile, 11-double-bounce, 17-mailname,
23-dirent-d_type, 24-random-message-id, and 25-unsupported-starttls
--- /dev/null
+Description: Fix a double-free bug.
+ I'll forward this patch as soon as I catch up with the dma upstream.
+Origin: other: http://svn.ringlet.net/svn/ringlet/mail/dma/
+Forwarded: no
+Author: Peter Pentchev <roam@ringlet.net>
+Last-Update: 2010-06-17
+
+--- a/spool.c
++++ b/spool.c
+@@ -315,7 +315,7 @@
+ if (queuefn != NULL)
+ free(queuefn);
+ if (mailfn != NULL)
+- free(queuefn);
++ free(mailfn);
+ }
+ closedir(spooldir);
+ return (0);