30 lines
798 B
Diff
30 lines
798 B
Diff
|
From 0000000000000000000000000000000000000000 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.
|
||
|
|
||
|
Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com>
|
||
|
---
|
||
|
tests/directio.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/tests/directio.c b/tests/directio.c
|
||
|
index 3cd7a520..66aaf0eb 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);
|
||
|
--
|
||
|
2.17.2
|
||
|
|