OSDN Git Service

soc: ti: ti_sci_pm_domains: Check for null return of devm_kcalloc
authorQintaoShen <unSimple1993@163.com>
Thu, 24 Mar 2022 07:44:03 +0000 (15:44 +0800)
committerNishanth Menon <nm@ti.com>
Fri, 15 Apr 2022 19:59:23 +0000 (14:59 -0500)
commitba56291e297d28aa6eb82c5c1964fae2d7594746
treef06beb68f3cf776ca8bab86324b3222ff5911bbb
parentcabfa5b46573b4e5ded52b4296a831745c6d32b5
soc: ti: ti_sci_pm_domains: Check for null return of devm_kcalloc

The allocation funciton devm_kcalloc may fail and return a null pointer,
which would cause a null-pointer dereference later.
It might be better to check it and directly return -ENOMEM just like the
usage of devm_kcalloc in previous code.

Signed-off-by: QintaoShen <unSimple1993@163.com>
Signed-off-by: Nishanth Menon <nm@ti.com>
Link: https://lore.kernel.org/r/1648107843-29077-1-git-send-email-unSimple1993@163.com
drivers/soc/ti/ti_sci_pm_domains.c