Message ID | 20200819184637.15648-1-trix@redhat.com (mailing list archive) |
---|---|
State | Accepted, archived |
Commit | a161ffe4b877721d8917e18e70461d255a090f19 |
Headers | show |
Series | soc: qcom: initialize local variable | expand |
On 2020-08-20 00:16, trix@redhat.com wrote: > From: Tom Rix <trix@redhat.com> > > clang static analysis reports this problem > > pdr_interface.c:596:6: warning: Branch condition evaluates > to a garbage value > if (!req.service_path[0]) > ^~~~~~~~~~~~~~~~~~~~ > > This check that req.service_path was set in an earlier loop. > However req is a stack variable and its initial value > is undefined. > > So initialize req to 0. > > Fixes: fbe639b44a82 ("soc: qcom: Introduce Protection Domain Restart > helpers") > Tom, Thanks for the patch. Reviewed-by: Sibi Sankar <sibis@codeaurora.org> > Signed-off-by: Tom Rix <trix@redhat.com> > --- > drivers/soc/qcom/pdr_interface.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/soc/qcom/pdr_interface.c > b/drivers/soc/qcom/pdr_interface.c > index 088dc99f77f3..f63135c09667 100644 > --- a/drivers/soc/qcom/pdr_interface.c > +++ b/drivers/soc/qcom/pdr_interface.c > @@ -569,7 +569,7 @@ EXPORT_SYMBOL(pdr_add_lookup); > int pdr_restart_pd(struct pdr_handle *pdr, struct pdr_service *pds) > { > struct servreg_restart_pd_resp resp; > - struct servreg_restart_pd_req req; > + struct servreg_restart_pd_req req = { 0 }; > struct sockaddr_qrtr addr; > struct pdr_service *tmp; > struct qmi_txn txn;
Hello: This patch was applied to qcom/linux.git (refs/heads/for-next): On Wed, 19 Aug 2020 11:46:37 -0700 you wrote: > From: Tom Rix <trix@redhat.com> > > clang static analysis reports this problem > > pdr_interface.c:596:6: warning: Branch condition evaluates > to a garbage value > if (!req.service_path[0]) > ^~~~~~~~~~~~~~~~~~~~ > > [...] Here is the summary with links: - soc: qcom: initialize local variable https://git.kernel.org/qcom/c/a161ffe4b877 You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html
diff --git a/drivers/soc/qcom/pdr_interface.c b/drivers/soc/qcom/pdr_interface.c index 088dc99f77f3..f63135c09667 100644 --- a/drivers/soc/qcom/pdr_interface.c +++ b/drivers/soc/qcom/pdr_interface.c @@ -569,7 +569,7 @@ EXPORT_SYMBOL(pdr_add_lookup); int pdr_restart_pd(struct pdr_handle *pdr, struct pdr_service *pds) { struct servreg_restart_pd_resp resp; - struct servreg_restart_pd_req req; + struct servreg_restart_pd_req req = { 0 }; struct sockaddr_qrtr addr; struct pdr_service *tmp; struct qmi_txn txn;