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); 75bb35fd545dc3dc5275428ca4cc17123c76c'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/grafts.scm
AgeCommit message (Expand)Author
2022-11-11grafts: Run with a UTF-8 locale....Fixes <https://issues.guix.gnu.org/55968>. Reported by Maxime Devos <maximedevos@telenet.be>. * guix/grafts.scm (%graft-with-utf8-locale?): New parameter. (graft-derivation/shallow)[glibc-locales, set-utf8-locale]: New variables. [build]: Use 'set-utf8-locale'. * tests/gexp.scm, tests/grafts.scm, tests/packages.scm: Set '%graft-with-utf8-locale?' to #f. Ludovic Courtès
2021-04-15grafts: Support rewriting UTF-16 and UTF-32 store references....Partially fixes <https://bugs.gnu.org/33848>. * guix/build/graft.scm (replace-store-references): Add support for finding and rewriting UTF-16 and UTF-32 store references. * tests/grafts.scm: Add tests. Mark H Weaver