代码拉取完成,页面将自动刷新
同步操作将从 OpenCloudOS Stream/nbdkit 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
From 965910b1f0864ab52221376e584c65d1d9e78204 Mon Sep 17 00:00:00 2001
From: "Richard W.M. Jones" <rjones@redhat.com>
Date: Fri, 20 Sep 2024 20:47:12 +0100
Subject: [PATCH] lzip: Fix memory leak
==1930882== 206,912 bytes in 2 blocks are definitely lost in loss record 20 of 20
==1930882== at 0xC980347: realloc (vg_replace_malloc.c:1800)
==1930882== by 0xC999DFE: lzip_prepare (lzipindex.c:46)
==1930882== by 0x10D81C: filter_prepare (filters.c:342)
==1930882== by 0x10F25A: backend_prepare (backend.c:332)
==1930882== by 0x119D2B: protocol_common_open (protocol-handshake.c:88)
==1930882== by 0x11A3B6: finish_newstyle_options (protocol-handshake-newstyle.c:338)
==1930882== by 0x11EBB4: negotiate_handshake_newstyle_options.lto_priv.0 (protocol-handshake-newstyle.c:638)
==1930882== by 0x1147AE: handle_single_connection (protocol-handshake-newstyle.c:1010)
==1930882== by 0x118F90: start_thread (sockets.c:377)
==1930882== by 0xCCA3796: start_thread (pthread_create.c:447)
==1930882== by 0xCD27593: clone (clone.S:100)
Fixes: commit 2b5663f6b0ff7bc0814c775c01d54ec8ab8312d5
---
filters/lzip/lzipfile.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/filters/lzip/lzipfile.c b/filters/lzip/lzipfile.c
index 966f4716..27c8d351 100644
--- a/filters/lzip/lzipfile.c
+++ b/filters/lzip/lzipfile.c
@@ -225,7 +225,7 @@ void
lzipfile_close (lzipfile *lz)
{
if (lz) {
- lzip_index_finalize (&lz->idx);
+ lzip_index_destroy (&lz->idx);
free (lz);
}
}
--
GitLab
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。