fix memory leak in repart

This commit is contained in:
肖在 2024-10-21 14:51:15 +08:00 committed by zhangyao
parent 47d91adbf5
commit ee27ae4009
2 changed files with 29 additions and 1 deletions

View File

@ -0,0 +1,24 @@
From a81f5ffd40081441dafc678fe83d185436dde35a Mon Sep 17 00:00:00 2001
From: Antonio Alvarez Feijoo <antonio.feijoo@suse.com>
Date: Tue, 18 Jun 2024 14:07:50 +0200
Subject: [PATCH 7351/9500] repart: fix memory leak
---
src/partition/repart.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/partition/repart.c b/src/partition/repart.c
index 473c83a..7ba2aad 100644
--- a/src/partition/repart.c
+++ b/src/partition/repart.c
@@ -181,6 +181,7 @@ STATIC_DESTRUCTOR_REGISTER(arg_tpm2_hash_pcr_values, freep);
STATIC_DESTRUCTOR_REGISTER(arg_tpm2_public_key, freep);
STATIC_DESTRUCTOR_REGISTER(arg_tpm2_pcrlock, freep);
STATIC_DESTRUCTOR_REGISTER(arg_filter_partitions, freep);
+STATIC_DESTRUCTOR_REGISTER(arg_defer_partitions, freep);
STATIC_DESTRUCTOR_REGISTER(arg_image_policy, image_policy_freep);
STATIC_DESTRUCTOR_REGISTER(arg_copy_from, strv_freep);
STATIC_DESTRUCTOR_REGISTER(arg_copy_source, freep);
--
2.33.0

View File

@ -25,7 +25,7 @@
Name: systemd Name: systemd
Url: https://systemd.io/ Url: https://systemd.io/
Version: 255 Version: 255
Release: 27 Release: 28
License: MIT and LGPLv2+ and GPLv2+ License: MIT and LGPLv2+ and GPLv2+
Summary: System and Service Manager Summary: System and Service Manager
@ -129,6 +129,7 @@ Patch9057: add-a-new-switch-to-control-whether-udev-complies-wi.patch
Patch9058: journal-don-t-enable-systemd-journald-audit.socket.patch Patch9058: journal-don-t-enable-systemd-journald-audit.socket.patch
Patch9801: Systemd-Add-sw64-architecture.patch Patch9801: Systemd-Add-sw64-architecture.patch
Patch9802: backport-repart-fix-memory-leak.patch
BuildRequires: gcc, gcc-c++ BuildRequires: gcc, gcc-c++
BuildRequires: libcap-devel, libmount-devel, pam-devel, libselinux-devel BuildRequires: libcap-devel, libmount-devel, pam-devel, libselinux-devel
@ -1664,6 +1665,9 @@ fi
%{_unitdir}/veritysetup.target %{_unitdir}/veritysetup.target
%changelog %changelog
* Mon Dec 09 2024 zhangyao <zhangyao108@huawei.com> - 255-28
- DESC:fix memory leak in src/partition/repart.c
* Mon Dec 09 2024 zhangyao <zhangyao108@huawei.com> - 255-27 * Mon Dec 09 2024 zhangyao <zhangyao108@huawei.com> - 255-27
- DESC:network networkd address does not set up firewall rules - DESC:network networkd address does not set up firewall rules
add backport-network-networkd-address-don-t-set-up-firewall-rules.patch add backport-network-networkd-address-don-t-set-up-firewall-rules.patch