aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmerigo Wang <[email protected]>2009-12-15 16:47:35 -0800
committerLinus Torvalds <[email protected]>2009-12-16 07:20:10 -0800
commite5cc9c7b1a3e7ae4d700d9fce168fb597bcfe9b6 (patch)
tree567e8b359132aa0a542c2d940274727003c0c9f1
parentd987f8b213f2cdcc52b2ca9ee67161516e4d256a (diff)
ipc: remove unreachable code in sem.c
This line is unreachable, remove it. [[email protected]: remove unneeded initialisation of `err'] Signed-off-by: WANG Cong <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r--ipc/sem.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/ipc/sem.c b/ipc/sem.c
index 82518d6a96a3..dbef95b15941 100644
--- a/ipc/sem.c
+++ b/ipc/sem.c
@@ -624,7 +624,7 @@ static unsigned long copy_semid_to_user(void __user *buf, struct semid64_ds *in,
static int semctl_nolock(struct ipc_namespace *ns, int semid,
int cmd, int version, union semun arg)
{
- int err = -EINVAL;
+ int err;
struct sem_array *sma;
switch(cmd) {
@@ -701,7 +701,6 @@ static int semctl_nolock(struct ipc_namespace *ns, int semid,
default:
return -EINVAL;
}
- return err;
out_unlock:
sem_unlock(sma);
return err;