summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: eeaa09e)
raw | patch | inline | side by side (parent: eeaa09e)
author | Sebastian Harl <sh@tokkee.org> | |
Wed, 4 Mar 2009 18:24:20 +0000 (19:24 +0100) | ||
committer | Sebastian Harl <sh@tokkee.org> | |
Wed, 4 Mar 2009 18:31:31 +0000 (19:31 +0100) |
debian/changelog | patch | blob | history | |
debian/patches/05_fix_call_to_free.dpatch | [deleted file] | patch | blob | history |
diff --git a/debian/changelog b/debian/changelog
index c5af8c76a7e3672435f216a1b2c5203d23ccb069..c50c43d8a32bf4ec035fbc10d71d0b841d0a4270 100644 (file)
--- a/debian/changelog
+++ b/debian/changelog
* debian/patches/:
- Removed 01_debian_make_mlmmj-ml - instead added mlmmj-make-ml to debian/
directly.
+ - Removed unused 05_fix_call_to_free.
- -- Sebastian Harl <sh@tokkee.org> Wed, 04 Mar 2009 19:21:08 +0100
+ -- Sebastian Harl <sh@tokkee.org> Wed, 04 Mar 2009 19:23:55 +0100
mlmmj (1.2.15-1.1) unstable; urgency=low
diff --git a/debian/patches/05_fix_call_to_free.dpatch b/debian/patches/05_fix_call_to_free.dpatch
+++ /dev/null
@@ -1,19 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## 05_fix_call_to_free.dpatch by <boll@tristram.fork.dk>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: No description.
-
-@DPATCH@
-diff -urNad --exclude=CVS --exclude=.svn ./src/prepstdreply.c /tmp/dpep-work.Lj9E7s/mlmmj-1.2.8/src/prepstdreply.c
---- ./src/prepstdreply.c 2005-01-15 11:46:24.000000000 +0100
-+++ /tmp/dpep-work.Lj9E7s/mlmmj-1.2.8/src/prepstdreply.c 2005-09-12 20:05:45.000000000 +0200
-@@ -181,7 +181,7 @@
- if(replyto) {
- myreplyto = substitute(replyto, listaddr, tokencount, data);
- tmp = concatstr(3, "Reply-To: ", myreplyto, "\n");
-- free(myreplyto);
-+ myfree(myreplyto);
- myreplyto = tmp;
- } else
- myreplyto = NULL;