diff options
author | Luiz Capitulino <lcapitulino@mandriva.com.br> | 2006-01-07 01:59:43 -0500 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-01-07 15:57:27 -0500 |
commit | ee2e6841b934d76cb944a3390bbea84da777d4fa (patch) | |
tree | 839c2a904647d220d5188e942240b22a24403990 /security | |
parent | aa0e4e4aea8d9e0a559a884336d728f0263063e0 (diff) |
[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 5b7776504e4c..b2af7ca496c1 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 | |||
146 | return rc; | 146 | return rc; |
147 | 147 | ||
148 | out: | 148 | out: |
149 | *ctxp = 0; | 149 | *ctxp = NULL; |
150 | kfree(ctx); | 150 | kfree(ctx); |
151 | return rc; | 151 | return rc; |
152 | } | 152 | } |