diff options
| author | Neil Horman <nhorman@tuxdriver.com> | 2008-06-10 08:53:39 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-06-10 10:58:00 -0400 |
| commit | c592713b3e124ce0719e6af4bc2520424c49cbae (patch) | |
| tree | 5b8c212fb7601c0560f16c46543581d6b4fd726a /ipc | |
| parent | 5e70b7f3c24468bb1635b295945edb48ecd9656a (diff) | |
shm: Remove silly double assignment
Found a silly double assignment of err is do_shmat. Silly, but good to
clean up the useless code.
Signed-off-by: Neil Horman <nhorman@tuxdriver.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'ipc')
| -rw-r--r-- | ipc/shm.c | 2 |
1 files changed, 0 insertions, 2 deletions
| @@ -894,8 +894,6 @@ long do_shmat(int shmid, char __user *shmaddr, int shmflg, ulong *raddr) | |||
| 894 | if (!sfd) | 894 | if (!sfd) |
| 895 | goto out_put_dentry; | 895 | goto out_put_dentry; |
| 896 | 896 | ||
| 897 | err = -ENOMEM; | ||
| 898 | |||
| 899 | file = alloc_file(path.mnt, path.dentry, f_mode, &shm_file_operations); | 897 | file = alloc_file(path.mnt, path.dentry, f_mode, &shm_file_operations); |
| 900 | if (!file) | 898 | if (!file) |
| 901 | goto out_free; | 899 | goto out_free; |
