mirror of
https://github.com/torvalds/linux.git
synced 2024-11-14 08:02:07 +00:00
sparc: vDSO: Silence an uninitialized variable warning
Smatch complains that "val" would be uninitialized if kstrtoul() fails.
Fixes: 9a08862a5d
("vDSO for sparc")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
776ca1543b
commit
62d6f3b7b8
@ -262,7 +262,9 @@ static __init int vdso_setup(char *s)
|
|||||||
unsigned long val;
|
unsigned long val;
|
||||||
|
|
||||||
err = kstrtoul(s, 10, &val);
|
err = kstrtoul(s, 10, &val);
|
||||||
|
if (err)
|
||||||
|
return err;
|
||||||
vdso_enabled = val;
|
vdso_enabled = val;
|
||||||
return err;
|
return 0;
|
||||||
}
|
}
|
||||||
__setup("vdso=", vdso_setup);
|
__setup("vdso=", vdso_setup);
|
||||||
|
Loading…
Reference in New Issue
Block a user