mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-31 11:21:17 +02:00
14 lines
425 B
Diff
14 lines
425 B
Diff
Fix a memory leak. See Bug #587250.
|
|
|
|
--- a/ftpfs.c 2008-04-30 01:05:47.000000000 +0200
|
|
+++ a/ftpfs.c.slesimple 2010-01-01 22:12:10.000000000 +0100
|
|
@@ -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);
|
|
}
|
|
|