[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <a4ed49c0-e92f-4fa6-b1b2-32749f551724@stanley.mountain>
Date: Thu, 6 Mar 2025 12:48:40 +0300
From: Dan Carpenter <dan.carpenter@...aro.org>
To: David Disseldorp <ddiss@...e.de>
Cc: Christian Brauner <brauner@...nel.org>, linux-kernel@...r.kernel.org,
kernel-janitors@...r.kernel.org
Subject: [PATCH next] initramfs_test: Fix NULL vs IS_ERR() bug in
initramfs_test_data()
The filp_open() function returns error pointers. It never returns
NULL pointers. Update the check to match.
Fixes: b6736cfccb58 ("initramfs_test: kunit tests for initramfs unpacking")
Signed-off-by: Dan Carpenter <dan.carpenter@...aro.org>
---
init/initramfs_test.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/init/initramfs_test.c b/init/initramfs_test.c
index 6231fe012583..7d14f70beabc 100644
--- a/init/initramfs_test.c
+++ b/init/initramfs_test.c
@@ -222,7 +222,7 @@ static void __init initramfs_test_data(struct kunit *test)
KUNIT_EXPECT_NULL(test, err);
file = filp_open(c[0].fname, O_RDONLY, 0);
- if (!file) {
+ if (IS_ERR(file)) {
KUNIT_FAIL(test, "open failed");
goto out;
}
--
2.47.2
Powered by blists - more mailing lists