cppc_cpufreq: Fix possible null pointer dereference
authorAleksandr Mishin <amishin@t-argos.ru>
Mon, 8 Apr 2024 09:35:36 +0000 (12:35 +0300)
committerViresh Kumar <viresh.kumar@linaro.org>
Fri, 19 Apr 2024 06:29:16 +0000 (11:59 +0530)
commitcf7de25878a1f4508c69dc9f6819c21ba177dbfe
treedac4ae92293cf0be48f8352bc65b7b8116a3792c
parentb5e230aa8d0359bba49659c8358074755c6eb9e4
cppc_cpufreq: Fix possible null pointer dereference

cppc_cpufreq_get_rate() and hisi_cppc_cpufreq_get_rate() can be called from
different places with various parameters. So cpufreq_cpu_get() can return
null as 'policy' in some circumstances.
Fix this bug by adding null return check.

Found by Linux Verification Center (linuxtesting.org) with SVACE.

Fixes: a28b2bfc099c ("cppc_cpufreq: replace per-cpu data array with a list")
Signed-off-by: Aleksandr Mishin <amishin@t-argos.ru>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
drivers/cpufreq/cppc_cpufreq.c