adfbb8ebd5
If mdcheck_start service can finish check action, it doesn't need to start mdcheck_continue service. So in rhel only patch mdcheck.patch, we stop mdcheck_continue timer. And there is a history problem. It needed KillMode=none before, so it removed the upstream patch 52c67fcdd. Now this problem has been fixed, so we can do the backport more easilly now. We don't need to remove the upstream patch here again. Resolves: rhbz#2116418, rhbz#2150862, rhbz#2159584 Signed-off-by: Xiao Ni <xni@redhat.com>
32 lines
833 B
Diff
32 lines
833 B
Diff
From dac0b5121dd77bf1659b95248423445f932dfae4 Mon Sep 17 00:00:00 2001
|
|
From: Wu Guanghao <wuguanghao3@huawei.com>
|
|
Date: Sat, 4 Mar 2023 00:21:32 +0800
|
|
Subject: [PATCH 095/125] Detail.c: fix memleak in Detail()
|
|
|
|
char *sysdev = xstrdup() but not free() in for loop, will cause memory
|
|
leak
|
|
|
|
Signed-off-by: Wu Guanghao <wuguanghao3@huawei.com>
|
|
Acked-by: Mariusz Tkaczyk <mariusz.tkaczyk@linux.intel.com>
|
|
Acked-by: Coly Li <colyli@suse.de>
|
|
Signed-off-by: Jes Sorensen <jes@trained-monkey.org>
|
|
---
|
|
Detail.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/Detail.c b/Detail.c
|
|
index ce7a8445..4ef26460 100644
|
|
--- a/Detail.c
|
|
+++ b/Detail.c
|
|
@@ -303,6 +303,7 @@ int Detail(char *dev, struct context *c)
|
|
if (path)
|
|
printf("MD_DEVICE_%s_DEV=%s\n",
|
|
sysdev, path);
|
|
+ free(sysdev);
|
|
}
|
|
}
|
|
goto out;
|
|
--
|
|
2.38.1
|
|
|