bq2415x_charger: Fix null pointer dereference
Commitb68c316143
(bq2415x_charger: Allow to load and use driver even if notify device is not registered yet) introduced null pointer dereference in case bq is NULL. This patch fixes it. Fixes:b68c316143
("bq2415x_charger: Allow to load and use driver even if notify device is not registered yet") Reported-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Pali Rohár <pali.rohar@gmail.com> Signed-off-by: Sebastian Reichel <sre@kernel.org>
This commit is contained in:
parent
8807feb91b
commit
28153a31b8
1 changed files with 1 additions and 1 deletions
|
@ -1704,7 +1704,7 @@ error_4:
|
||||||
error_3:
|
error_3:
|
||||||
bq2415x_power_supply_exit(bq);
|
bq2415x_power_supply_exit(bq);
|
||||||
error_2:
|
error_2:
|
||||||
if (bq->notify_node)
|
if (bq && bq->notify_node)
|
||||||
of_node_put(bq->notify_node);
|
of_node_put(bq->notify_node);
|
||||||
kfree(name);
|
kfree(name);
|
||||||
error_1:
|
error_1:
|
||||||
|
|
Loading…
Add table
Reference in a new issue