remoteproc: debugfs: Return error on invalid 'count' value
If 'count' value is invalid, return -EINVAL. Signed-off-by: Lee Jones <lee.jones@linaro.org> [bjorn: changed commit message] Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
This commit is contained in:
parent
99c429cb4e
commit
47fff9fd8a
@ -157,7 +157,7 @@ rproc_recovery_write(struct file *filp, const char __user *user_buf,
|
||||
int ret;
|
||||
|
||||
if (count < 1 || count > sizeof(buf))
|
||||
return count;
|
||||
return -EINVAL;
|
||||
|
||||
ret = copy_from_user(buf, user_buf, count);
|
||||
if (ret)
|
||||
|
Loading…
x
Reference in New Issue
Block a user