From 2d01202eee44d8bad5bb982e72829b4a98d58bcd Mon Sep 17 00:00:00 2001 From: Joseph Lansdowne Date: Thu, 4 Apr 2019 20:37:06 +0100 Subject: [PATCH] fix memory leak --- ChangeLog | 1 + ftpfs.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/ftpfs.c b/ftpfs.c index 34f8c38..020e559 100644 --- a/ftpfs.c +++ b/ftpfs.c @@ -607,6 +607,8 @@ static int finish_write_thread(struct ftpfs_file *fh) static void free_ftpfs_file(struct ftpfs_file *fh) { + buf_free(&fh->buf); + buf_free(&fh->stream_buf); if (fh->write_conn) curl_easy_cleanup(fh->write_conn); g_free(fh->full_path); ass='form'>
Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/patches/gourmet-sqlalchemy-compat.patch
AgeCommit message (Expand)Author
2022-05-31gnu: gourmet: Update to 0.17.4-0-8af29c8 and enable tests....* gnu/packages/patches/gourmet-sqlalchemy-compat.patch: Add file. * gnu/local.mk (dist_patch_DATA): Register it. * gnu/packages/nutrition.scm (gourmet): Update to 0.17.4-0-8af29c8. [source]: Apply patch. [python]: Delete argument. [tests?]: Likewise. [phases]{prepare-x}: New phase. {check}: New phase override. {install-dekstop-file-and-icons}: New phase. [native-inputs]: Delete python2-distutils-extra, intltool and python2-pygtk. Add python-dogtail, python-pytest, python-selenium and xorg-server-for-tests. [inputs]: Delete python2-pygtk, python2-sqlalchemy, python2-lxml, python2-pillow and python2-elib.intl. Add gtk+, python-argcomplete, python-beautifulsoup4, python-gst, python-keyring, python-lxml, python-pillow, python-pycairo, python-pyenchant, python-pygobject, python-requests, python-scrape-schema-recipe, python-sqlalchemy. Maxim Cournoyer