[PATCH] 2.5-bk trivial LSM cleanup

From: Chris Wright (chris@wirex.com)
Date: Wed Feb 05 2003 - 15:52:51 EST


Hi Linus,

Trivial patch from Randy Dunlap <rddunlap@osdl.org> removes some useless
error/retval assignments.

thanks,
-chris

-- 
Linux Security Modules     http://lsm.immunix.org     http://lsm.bkbits.net

--- ./fs/ioctl.c%CLEAN Wed Jan 8 20:03:57 2003 +++ ./fs/ioctl.c Wed Jan 8 20:38:51 2003 @@ -57,7 +57,6 @@ filp = fget(fd); if (!filp) goto out; - error = 0;

error = security_file_ioctl(filp, cmd, arg); if (error) { --- ./fs/namespace.c%SCLN Wed Jan 8 20:04:17 2003 +++ ./fs/namespace.c Thu Jan 9 10:48:25 2003 @@ -287,7 +287,7 @@ static int do_umount(struct vfsmount *mnt, int flags) { struct super_block * sb = mnt->mnt_sb; - int retval = 0; + int retval;

retval = security_sb_umount(mnt, flags); if (retval) --- ./kernel/sys.c%SCLN Thu Jan 9 11:12:29 2003 +++ ./kernel/sys.c Thu Jan 9 11:12:40 2003 @@ -1317,7 +1317,7 @@ asmlinkage long sys_prctl(int option, unsigned long arg2, unsigned long arg3, unsigned long arg4, unsigned long arg5) { - int error = 0; + int error; int sig;

error = security_task_prctl(option, arg2, arg3, arg4, arg5); - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Fri Feb 07 2003 - 22:00:18 EST