X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=attach.c;h=33eacb12056d0abf240f6a32a9a807289d67c050;hp=c87f9cf30579b236b33cbe9bc6a4d313b7245e2f;hb=cf69ddd650f124d3aed242285434ba2b97fb4b79;hpb=a8477ebaa09990b3688164cbe5cf661c4189541d diff --git a/attach.c b/attach.c index c87f9cf..33eacb1 100644 --- a/attach.c +++ b/attach.c @@ -141,12 +141,12 @@ int mutt_compose_attachment (BODY * a) b->parameter = NULL; } if (b->description) { - FREE (&a->description); + mem_free (&a->description); a->description = b->description; b->description = NULL; } if (b->form_name) { - FREE (&a->form_name); + mem_free (&a->form_name); a->form_name = b->form_name; b->form_name = NULL; } @@ -329,9 +329,9 @@ void mutt_check_lookup_list (BODY * b, char *type, int len) debug_print (1, ("\"%s\" -> %s\n", b->filename, type)); } if (tmp.subtype) - FREE (&tmp.subtype); + mem_free (&tmp.subtype); if (tmp.xtype) - FREE (&tmp.xtype); + mem_free (&tmp.xtype); } } } @@ -446,7 +446,7 @@ int mutt_view_attachment (FILE * fp, BODY * a, int flag, HEADER * hdr, if (fp) { /* recv case: we need to save the attachment to a file */ - FREE (&fname); + mem_free (&fname); if (mutt_save_attachment (fp, a, tempfile, 0, NULL) == -1) goto return_error; }