multipath-tools/0026-multipath-tools-tests-directio-fix-Wmaybe-uninitaliz.patch
lixiaokeng bf9fbec130 fix testcode compile error
(cherry picked from commit 6e80019d94a1607fd30119dbf75006956bc2813e)
2021-08-13 09:22:03 +08:00

28 lines
740 B
Diff

From 835e88dd38362574ee3b0e5d2b2a3b250462e09a Mon Sep 17 00:00:00 2001
From: Martin Wilck <mwilck@suse.com>
Date: Tue, 12 May 2020 00:11:39 +0200
Subject: [PATCH] multipath-tools tests/directio: fix -Wmaybe-uninitalized
warning
Initialize aio_grp to satisfy gcc.
---
tests/directio.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/directio.c b/tests/directio.c
index 3cd7a52..66aaf0e 100644
--- a/tests/directio.c
+++ b/tests/directio.c
@@ -316,7 +316,7 @@ static void test_init_free(void **state)
{
int i, count = 0;
struct checker c[4096] = {0};
- struct aio_group *aio_grp;
+ struct aio_group *aio_grp = NULL;
assert_true(list_empty(&aio_grp_list));
will_return(__wrap_io_setup, 0);
--
1.8.3.1