dect
/
linux-2.6
Archived
13
0
Fork 0

smack: fix integer as NULL pointer warning in smack_lsm.c

security/smack/smack_lsm.c:1257:16: warning: Using plain integer as NULL pointer

Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Acked-by: Casey Schaufler <casey@schaufler-ca.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Harvey Harrison 2008-04-28 02:13:41 -07:00 committed by Linus Torvalds
parent 3898b1b4eb
commit c60264c494
1 changed files with 1 additions and 1 deletions

View File

@ -1242,7 +1242,7 @@ static void smack_set_catset(char *catset, struct netlbl_lsm_secattr *sap)
int rc;
int byte;
if (catset == 0)
if (!catset)
return;
sap->flags |= NETLBL_SECATTR_MLS_CAT;