mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-16 05:26:07 +00:00
zram: correctly handle all next_arg() cases
When supplied buffer does not have assignment sign next_arg() sets `val` pointer to NULL, so we cannot dereference it. Add a NULL pointer test to handle `param` case, in addition to `*val` test, which handles cases when param has no value assigned to it: `param=`. Link: https://lkml.kernel.org/r/20230103030119.1496358-1-senozhatsky@chromium.org Signed-off-by: Sergey Senozhatsky <senozhatsky@chromium.org> Cc: Minchan Kim <minchan@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:
parent
4b89a37d54
commit
df32de1433
@ -1140,7 +1140,7 @@ static ssize_t recomp_algorithm_store(struct device *dev,
|
||||
while (*args) {
|
||||
args = next_arg(args, ¶m, &val);
|
||||
|
||||
if (!*val)
|
||||
if (!val || !*val)
|
||||
return -EINVAL;
|
||||
|
||||
if (!strcmp(param, "algo")) {
|
||||
@ -1824,7 +1824,7 @@ static ssize_t recompress_store(struct device *dev,
|
||||
while (*args) {
|
||||
args = next_arg(args, ¶m, &val);
|
||||
|
||||
if (!*val)
|
||||
if (!val || !*val)
|
||||
return -EINVAL;
|
||||
|
||||
if (!strcmp(param, "type")) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user