Commit 6a5640f1 authored by Namhyung Kim's avatar Namhyung Kim Committed by Al Viro

compat: remove unnecessary assignment in compat_rw_copy_check_uvector()

*@ret_pointer is initialized to @fast_pointer thus the assignment is
redundant.
Signed-off-by: default avatarNamhyung Kim <namhyung@gmail.com>
Cc: Jeff Moyer <jmoyer@redhat.com>
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 16ebe911
...@@ -597,10 +597,8 @@ ssize_t compat_rw_copy_check_uvector(int type, ...@@ -597,10 +597,8 @@ ssize_t compat_rw_copy_check_uvector(int type,
if (nr_segs > fast_segs) { if (nr_segs > fast_segs) {
ret = -ENOMEM; ret = -ENOMEM;
iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL); iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL);
if (iov == NULL) { if (iov == NULL)
*ret_pointer = fast_pointer;
goto out; goto out;
}
} }
*ret_pointer = iov; *ret_pointer = iov;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment