regmap: cache: Add extra parameter check in regcache_init
When num_reg_defaults > 0 but reg_defaults is NULL, there will be a NULL pointer exception. Current code has no such usage, but as additional hardening, also check this to prevent any chance of crashing. Signed-off-by: Schspa Shi <schspa@gmail.com> Link: https://lore.kernel.org/r/20220629130951.63040-1-schspa@gmail.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
06fae51bb2
commit
a5201d42e2
@ -133,6 +133,12 @@ int regcache_init(struct regmap *map, const struct regmap_config *config)
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
if (config->num_reg_defaults && !config->reg_defaults) {
|
||||
dev_err(map->dev,
|
||||
"Register defaults number are set without the reg!\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
for (i = 0; i < config->num_reg_defaults; i++)
|
||||
if (config->reg_defaults[i].reg % map->reg_stride)
|
||||
return -EINVAL;
|
||||
|
Loading…
x
Reference in New Issue
Block a user