[PATCH] xfrm: Sparse warning fix.

From: Luiz Fernando Capitulino
Date: Fri Jan 06 2006 - 10:16:11 EST



Fixes the following sparse warning:

security/selinux/xfrm.c:155:10: warning: Using plain integer as NULL pointer

Signed-off-by: Luiz Capitulino <lcapitulino@xxxxxxxxxxxxxxx>

security/selinux/xfrm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/security/selinux/xfrm.c b/security/selinux/xfrm.c
index c4d87d4..16eb183 100644
--- a/security/selinux/xfrm.c
+++ b/security/selinux/xfrm.c
@@ -152,7 +152,7 @@ static int selinux_xfrm_sec_ctx_alloc(st
return rc;

out:
- *ctxp = 0;
+ *ctxp = NULL;
kfree(ctx);
return rc;
}


--
Luiz Fernando N. Capitulino
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/