diff options
author | Thomas Roessler <roessler@does-not-exist.org> | 2002-12-10 20:56:47 +0000 |
---|---|---|
committer | Thomas Roessler <roessler@does-not-exist.org> | 2002-12-10 20:56:47 +0000 |
commit | b62866d93e48a510912a1f503d907a2320da9238 (patch) | |
tree | 807a4c446cbec93779394a22cbc645430c8c94b1 /attach.c | |
parent | cd96c3449e02199afe9cde511f128bb387f5f4d3 (diff) |
Replace safe_free calls by the FREE macro.
Diffstat (limited to 'attach.c')
-rw-r--r-- | attach.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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); } } } |