X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=main.c;h=9af3581011300a468739333435cacf085df1cad5;hp=022d5ec94adbc55724f2edbde8ca83ab809dcf07;hb=308c7080ccca40d4865d8810f5528331d9ed61ff;hpb=c25bc063f35aaad6938c2022dae7a283346c2769 diff --git a/main.c b/main.c index 022d5ec..9af3581 100644 --- a/main.c +++ b/main.c @@ -19,6 +19,9 @@ # include "config.h" #endif +#include +#include + #include "mutt.h" #include "mutt_curses.h" #include "keymap.h" @@ -27,8 +30,6 @@ #include "mutt_idna.h" #include "xterm.h" -#include "lib/mem.h" -#include "lib/intl.h" #include "lib/str.h" #include "lib/debug.h" @@ -913,7 +914,7 @@ int main (int argc, char **argv) mutt_endwin (NULL); perror (tempfile); fclose (fin); - mem_free (&tempfile); + p_delete(&tempfile); exit (1); } if (fin) @@ -926,7 +927,7 @@ int main (int argc, char **argv) } } - mem_free (&bodytext); + p_delete(&bodytext); if (attach) { LIST *t = attach; @@ -1028,7 +1029,7 @@ int main (int argc, char **argv) if (option (OPTXTERMSETTITLES)) mutt_xterm_set_title (NONULL (XtermLeave)); if (Context) - mem_free (&Context); + p_delete(&Context); } mutt_endwin (Errorbuf); }