Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
12 lines
306 B
Diff
12 lines
306 B
Diff
--- a/ftpfs.c
|
|
+++ b/ftpfs.c
|
|
@@ -614,6 +614,8 @@ static void free_ftpfs_file(struct ftpfs
|
|
sem_destroy(&fh->data_need);
|
|
sem_destroy(&fh->data_written);
|
|
sem_destroy(&fh->ready);
|
|
+ if (fh->buf.size) { buf_free(&fh->buf); }
|
|
+ if (fh->stream_buf.size) { buf_free(&fh->stream_buf); }
|
|
free(fh);
|
|
}
|
|
|