summaryrefslogtreecommitdiff
path: root/content/fetch.c
diff options
context:
space:
mode:
Diffstat (limited to 'content/fetch.c')
-rw-r--r--content/fetch.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/content/fetch.c b/content/fetch.c
index ffc907891..5b9aba1b0 100644
--- a/content/fetch.c
+++ b/content/fetch.c
@@ -665,8 +665,10 @@ void fetch_multipart_data_destroy(struct fetch_multipart_data *list)
next = list->next;
free(list->name);
free(list->value);
- if (list->file)
+ if (list->file) {
+ LOG(("Freeing rawfile: %s", list->rawfile));
free(list->rawfile);
+ }
free(list);
}
}