diff --git a/fs/proc/base.c b/fs/proc/base.c index 88b773f318cd06f31ca6262bb5949728c199ade0..5d93512beea11878efe6cd2984e84ba23a728c51 100644 --- a/fs/proc/base.c +++ b/fs/proc/base.c @@ -1368,7 +1368,7 @@ static ssize_t proc_fail_nth_write(struct file *file, const char __user *buf, put_task_struct(task); if (task != current) return -EPERM; - err = kstrtoint_from_user(buf, count, 10, &n); + err = kstrtoint_from_user(buf, count, 0, &n); if (err) return err; if (n < 0 || n == INT_MAX)