mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] 2.5-bk trivial LSM cleanup
@ 2003-02-05 20:52 Chris Wright
  0 siblings, 0 replies; only message in thread
From: Chris Wright @ 2003-02-05 20:52 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: rddunlap, linux-kernel

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);

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2003-02-05 20:43 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-02-05 20:52 [PATCH] 2.5-bk trivial LSM cleanup Chris Wright

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®