]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
power: supply: lp8788: prevent out of bounds array access
authorGiedrius Statkevičius <giedrius.statkevicius@gmail.com>
Sat, 25 Mar 2017 16:00:49 +0000 (18:00 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 14 May 2017 12:06:00 +0000 (14:06 +0200)
commitb998524b6c6082805dded8b03c826233f66241bd
tree2397395a3a6c81534ce1800c917408c906f5666b
parent648ada88cba2e78171d8ee81f4fceffc0386f6aa
power: supply: lp8788: prevent out of bounds array access

commit bdd9968d35f7fcdb76089347d1529bf079534214 upstream.

val might become 7 in which case stime[7] (array of length 7) would be
accessed during the scnprintf call later and that will cause issues.
Obviously, string concatenation is not intended here so just a comma needs
to be added to fix the issue.

Fixes: 98a276649358 ("power_supply: Add new lp8788 charger driver")
Signed-off-by: Giedrius Statkevičius <giedrius.statkevicius@gmail.com>
Acked-by: Milo Kim <milo.kim@ti.com>
Signed-off-by: Sebastian Reichel <sre@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/power/supply/lp8788-charger.c