Commit 7919e2d2 7919e2d260bd7971d75126d544b352b749c3fa74 by Sergey Poznyakoff

Bugfix.

1 parent 3c5aed39
...@@ -56,13 +56,11 @@ _mu_mime_param_free (struct mu_mime_param *p) ...@@ -56,13 +56,11 @@ _mu_mime_param_free (struct mu_mime_param *p)
56 /* Treat ITEM as a pointer to struct mu_mime_param and reclaim all 56 /* Treat ITEM as a pointer to struct mu_mime_param and reclaim all
57 memory associated with it. 57 memory associated with it.
58 58
59 This is intended for use as a destroy_item method of assoc tables and 59 This is intended for use as a destroy_item method of assoc tables. */
60 lists. */
61 static void 60 static void
62 _mu_mime_param_free_item (void *item) 61 _mu_mime_param_free_item (void *item)
63 { 62 {
64 _mu_mime_param_free (item); 63 _mu_mime_param_free (item);
65 free (item);
66 } 64 }
67 65
68 /* Recode a string between two charsets. 66 /* Recode a string between two charsets.
......