Bugfix.
Showing
1 changed file
with
1 additions
and
3 deletions
... | @@ -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. | ... | ... |
-
Please register or sign in to post a comment