compat: remove unnecessary assignment in compat_rw_copy_check_uvector()
authorNamhyung Kim <namhyung@gmail.com>
Sun, 26 Dec 2010 16:41:52 +0000 (01:41 +0900)
committerAl Viro <viro@zeniv.linux.org.uk>
Mon, 17 Jan 2011 09:54:38 +0000 (04:54 -0500)
*@ret_pointer is initialized to @fast_pointer thus the assignment is
redundant.

Signed-off-by: Namhyung Kim <namhyung@gmail.com>
Cc: Jeff Moyer <jmoyer@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/compat.c

index eb1740a..d717442 100644 (file)
@@ -597,10 +597,8 @@ ssize_t compat_rw_copy_check_uvector(int type,
        if (nr_segs > fast_segs) {
                ret = -ENOMEM;
                iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL);
-               if (iov == NULL) {
-                       *ret_pointer = fast_pointer;
+               if (iov == NULL)
                        goto out;
-               }
        }
        *ret_pointer = iov;