commit | 55338ac2a9839557516b00661e6a05daf996fda0 | [log] [tgz] |
---|---|---|
author | nixiaoming <nixiaoming@huawei.com> | Sun Jul 22 16:37:08 2018 +0800 |
committer | Al Viro <viro@zeniv.linux.org.uk> | Thu Oct 18 01:42:49 2018 -0400 |
tree | 05dae4cbf78c273650e3c9f3b6d8ba20a23f4fe0 | |
parent | d65b1f20292425b798ec74e313a7ad3f11b8af0d [diff] |
Delete invalid assignment statements in do_sendfile Assigning value -EINVAL to "retval" here, but that stored value is overwritten before it can be used. retval = -EINVAL; .... retval = rw_verify_area(WRITE, out.file, &out_pos, count); value_overwrite: Overwriting previous write to "retval" with value from rw_verify_area delete invalid assignment statements Signed-off-by: n00202754 <nixiaoming@huawei.com> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>