diff options
author | Christian Göttsche <cgzones@googlemail.com> | 2022-01-25 15:14:15 +0100 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2022-01-26 15:25:47 -0500 |
commit | 0b3c2b3dc96a57fd64691d666c4c7123a4f4e7b8 (patch) | |
tree | 8de2a216ba0c5b332391fe896caf3b286c2bb453 /security/selinux/ss | |
parent | 9e2fe574c02bde46307255467a5e4291f65227fe (diff) | |
download | linux-stable-0b3c2b3dc96a57fd64691d666c4c7123a4f4e7b8.tar.gz linux-stable-0b3c2b3dc96a57fd64691d666c4c7123a4f4e7b8.tar.bz2 linux-stable-0b3c2b3dc96a57fd64691d666c4c7123a4f4e7b8.zip |
selinux: drop cast to same type
Both the lvalue scontextp and rvalue scontext are of the type char*.
Drop the redundant explicit cast not needed since commit 9a59daa03df7
("SELinux: fix sleeping allocation in security_context_to_sid"), where
the type of scontext changed from const char* to char*.
Signed-off-by: Christian Göttsche <cgzones@googlemail.com>
Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'security/selinux/ss')
-rw-r--r-- | security/selinux/ss/services.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/selinux/ss/services.c b/security/selinux/ss/services.c index 5a7df45bdab1..2f8db93e53b2 100644 --- a/security/selinux/ss/services.c +++ b/security/selinux/ss/services.c @@ -1452,7 +1452,7 @@ static int string_to_context_struct(struct policydb *pol, /* Parse the security context. */ rc = -EINVAL; - scontextp = (char *) scontext; + scontextp = scontext; /* Extract the user. */ p = scontextp; |