From b62866d93e48a510912a1f503d907a2320da9238 Mon Sep 17 00:00:00 2001 From: Thomas Roessler Date: Tue, 10 Dec 2002 20:56:47 +0000 Subject: Replace safe_free calls by the FREE macro. --- attach.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'attach.c') diff --git a/attach.c b/attach.c index 4e9bf5e6..171929a4 100644 --- a/attach.c +++ b/attach.c @@ -156,13 +156,13 @@ int mutt_compose_attachment (BODY *a) b->parameter = NULL; } if (b->description) { - safe_free ((void **) &a->description); + FREE (&a->description); a->description = b->description; b->description = NULL; } if (b->form_name) { - safe_free ((void **) &a->form_name); + FREE (&a->form_name); a->form_name = b->form_name; b->form_name = NULL; } @@ -356,9 +356,9 @@ void mutt_check_lookup_list (BODY *b, char *type, int len) b->filename, type)); } if (tmp.subtype) - safe_free ((void **) &tmp.subtype); + FREE (&tmp.subtype); if (tmp.xtype) - safe_free ((void **) &tmp.xtype); + FREE (&tmp.xtype); } } } -- cgit v1.2.3