[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20230529225440.7315-1-minhuadotchen@gmail.com>
Date: Tue, 30 May 2023 06:54:39 +0800
From: Min-Hua Chen <minhuadotchen@...il.com>
To: Serge Hallyn <serge@...lyn.com>, Paul Moore <paul@...l-moore.com>,
James Morris <jmorris@...ei.org>
Cc: Min-Hua Chen <minhuadotchen@...il.com>,
linux-security-module@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] capabilities: use logical OR
Use logical OR to fix the following sparse warnings:
security/commoncap.c:1358:41: sparse: warning: dubious: !x | y
No functional changes intended.
Signed-off-by: Min-Hua Chen <minhuadotchen@...il.com>
---
security/commoncap.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/security/commoncap.c b/security/commoncap.c
index 0b3fc2f3afe7..b8e34f6204b2 100644
--- a/security/commoncap.c
+++ b/security/commoncap.c
@@ -1355,7 +1355,7 @@ int cap_task_prctl(int option, unsigned long arg2, unsigned long arg3,
return commit_creds(new);
}
- if (((!cap_valid(arg3)) | arg4 | arg5))
+ if (((!cap_valid(arg3)) || arg4 || arg5))
return -EINVAL;
if (arg2 == PR_CAP_AMBIENT_IS_SET) {
--
2.34.1
Powered by blists - more mailing lists