X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=rfc1524.c;h=026050f41e6b48d3ecd1574f8539c7138ca17c78;hp=b02ab4d49622a62ddf82ee27a08f1edd7406d4d7;hb=b3cb6ed8d36c550a2e589910ce51bbc8352ff57c;hpb=84336b1f31f4acefd0bf8500b8571c33669fd99f diff --git a/rfc1524.c b/rfc1524.c index b02ab4d..026050f 100644 --- a/rfc1524.c +++ b/rfc1524.c @@ -21,6 +21,8 @@ # include "config.h" #endif +#include + #include "mutt.h" #include "ascii.h" #include "rfc1524.h" @@ -274,7 +276,7 @@ static int rfc1524_mailcap_parse (BODY * a, /* a non-zero exit code means test failed */ found = FALSE; } - mem_free (&test_command); + p_delete(&test_command); } } } /* while (ch) */ @@ -299,13 +301,13 @@ static int rfc1524_mailcap_parse (BODY * a, if (!found) { /* reset */ if (entry) { - mem_free (&entry->command); - mem_free (&entry->composecommand); - mem_free (&entry->composetypecommand); - mem_free (&entry->editcommand); - mem_free (&entry->printcommand); - mem_free (&entry->nametemplate); - mem_free (&entry->convert); + p_delete(&entry->command); + p_delete(&entry->composecommand); + p_delete(&entry->composetypecommand); + p_delete(&entry->editcommand); + p_delete(&entry->printcommand); + p_delete(&entry->nametemplate); + p_delete(&entry->convert); entry->needsterminal = 0; entry->copiousoutput = 0; } @@ -313,27 +315,27 @@ static int rfc1524_mailcap_parse (BODY * a, } /* while (!found && (buf = mutt_read_line ())) */ fclose (fp); } /* if ((fp = fopen ())) */ - mem_free (&buf); + p_delete(&buf); return found; } rfc1524_entry *rfc1524_new_entry (void) { - return (rfc1524_entry *) mem_calloc (1, sizeof (rfc1524_entry)); + return p_new(rfc1524_entry, 1); } void rfc1524_free_entry (rfc1524_entry ** entry) { rfc1524_entry *p = *entry; - mem_free (&p->command); - mem_free (&p->testcommand); - mem_free (&p->composecommand); - mem_free (&p->composetypecommand); - mem_free (&p->editcommand); - mem_free (&p->printcommand); - mem_free (&p->nametemplate); - mem_free (entry); + p_delete(&p->command); + p_delete(&p->testcommand); + p_delete(&p->composecommand); + p_delete(&p->composetypecommand); + p_delete(&p->editcommand); + p_delete(&p->printcommand); + p_delete(&p->nametemplate); + p_delete(entry); } /*