diff options
author | Luiz Capitulino <lcapitulino@mandriva.com.br> | 2006-01-06 22:59:43 -0800 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-01-07 12:57:27 -0800 |
commit | ee2e6841b934d76cb944a3390bbea84da777d4fa (patch) | |
tree | 839c2a904647d220d5188e942240b22a24403990 /security | |
parent | aa0e4e4aea8d9e0a559a884336d728f0263063e0 (diff) | |
download | op-kernel-dev-ee2e6841b934d76cb944a3390bbea84da777d4fa.zip op-kernel-dev-ee2e6841b934d76cb944a3390bbea84da777d4fa.tar.gz |
[XFRM]: Fix sparse warning.
security/selinux/xfrm.c:155:10: warning: Using plain integer as NULL pointer
Signed-off-by: Luiz Capitulino <lcapitulino@mandriva.com.br>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'security')
-rw-r--r-- | security/selinux/xfrm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/selinux/xfrm.c b/security/selinux/xfrm.c index 5b77765..b2af7ca 100644 --- a/security/selinux/xfrm.c +++ b/security/selinux/xfrm.c @@ -146,7 +146,7 @@ static int selinux_xfrm_sec_ctx_alloc(struct xfrm_sec_ctx **ctxp, struct xfrm_us return rc; out: - *ctxp = 0; + *ctxp = NULL; kfree(ctx); return rc; } |