#! /bin/sh /usr/share/dpatch/dpatch-run ## 05_fix_call_to_free.dpatch by ## ## 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;