diff options
Diffstat (limited to 'zip.c')
| -rw-r--r-- | zip.c | 10 |
1 files changed, 3 insertions, 7 deletions
@@ -60,7 +60,6 @@ static int dump_final(void *const buf, const size_t n, bool *const done, { if (errno == EAGAIN || errno == EWOULDBLOCK) { - free_zip(z); *done = true; return 0; } @@ -251,12 +250,8 @@ static int step(void *const buf, const size_t n, bool *const done, void *const user, void *const args) { struct zip *const z = args; - const int ret = z->next(buf, n, done, user, z); - if (ret < 0) - free_zip(z); - - return ret; + return z->next(buf, n, done, user, z); } int zip(const char *const dir, struct http_response *const r) @@ -326,7 +321,8 @@ int zip(const char *const dir, struct http_response *const r) { .status = HTTP_STATUS_OK, .chunk = step, - .args = z + .args = z, + .free = free_zip }; if (http_response_add_header(r, "Content-Type", "application/zip") |
