X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/de06ed5f176a5fa3eb5522bb9a9741f9c3f1d0f4..63621a81d16ab743de6b57d47578a9a2c670ad22:/uip/sortm.c diff --git a/uip/sortm.c b/uip/sortm.c index 7e966db6..2e2809a2 100644 --- a/uip/sortm.c +++ b/uip/sortm.c @@ -8,7 +8,7 @@ #include #include #include -#include "../sbr/m_maildir.h" +#include "sbr/m_maildir.h" #define SORTM_SWITCHES \ X("datefield field", 0, DATESW) \ @@ -390,8 +390,8 @@ get_fields (char *datesw, int msg, struct smsg *smsg) msg, compnum); check_failed = 1; } - mh_xfree(datecomp); - mh_xfree(subjcomp); + free(datecomp); + free(subjcomp); fclose (in); return (0); @@ -453,7 +453,7 @@ get_fields (char *datesw, int msg, struct smsg *smsg) smsg->s_subj = subjcomp; } fclose (in); - mh_xfree(datecomp); + free(datecomp); return (1); }