Commit 2da5d31b authored by James Morris's avatar James Morris

security: fix a couple of sparse warnings

Fix a couple of sparse warnings for callers of
context_struct_to_string, which takes a *u32, not an *int.

These cases are harmless as the values are not used.
Signed-off-by: default avatarJames Morris <jmorris@namei.org>
Acked-by: default avatarKaiGai Kohei <kaigai@ak.jp.nec.com>
parent 97d6931e
...@@ -455,7 +455,8 @@ static void security_dump_masked_av(struct context *scontext, ...@@ -455,7 +455,8 @@ static void security_dump_masked_av(struct context *scontext,
char *scontext_name = NULL; char *scontext_name = NULL;
char *tcontext_name = NULL; char *tcontext_name = NULL;
char *permission_names[32]; char *permission_names[32];
int index, length; int index;
u32 length;
bool need_comma = false; bool need_comma = false;
if (!permissions) if (!permissions)
...@@ -807,7 +808,7 @@ int security_bounded_transition(u32 old_sid, u32 new_sid) ...@@ -807,7 +808,7 @@ int security_bounded_transition(u32 old_sid, u32 new_sid)
if (rc) { if (rc) {
char *old_name = NULL; char *old_name = NULL;
char *new_name = NULL; char *new_name = NULL;
int length; u32 length;
if (!context_struct_to_string(old_context, if (!context_struct_to_string(old_context,
&old_name, &length) && &old_name, &length) &&
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment