[RFC PATCH 17/20] selinux: services: implicit conversions

From: Christian Göttsche
Date: Thu Jul 06 2023 - 09:24:49 EST


Use the type identical to the source for local variables.

Signed-off-by: Christian Göttsche <cgzones@xxxxxxxxxxxxxx>
---
security/selinux/ss/services.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/security/selinux/ss/services.c b/security/selinux/ss/services.c
index 823b000381a4..e2cd6d7ea7cc 100644
--- a/security/selinux/ss/services.c
+++ b/security/selinux/ss/services.c
@@ -856,7 +856,7 @@ int security_bounded_transition(u32 old_sid, u32 new_sid)
struct sidtab *sidtab;
struct sidtab_entry *old_entry, *new_entry;
struct type_datum *type;
- int index;
+ u32 index;
int rc;

if (!selinux_initialized())
@@ -1511,9 +1511,7 @@ static int security_context_to_sid_core(const char *scontext, u32 scontext_len,
return -ENOMEM;

if (!selinux_initialized()) {
- int i;
-
- for (i = 1; i < SECINITSID_NUM; i++) {
+ for (u32 i = 1; i < SECINITSID_NUM; i++) {
const char *s = initial_sid_to_string[i];

if (s && !strcmp(s, scontext2)) {
--
2.40.1