diff options
| author | Linux Build Service Account <lnxbuild@localhost> | 2018-09-21 09:14:57 -0700 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2018-09-21 09:14:57 -0700 |
| commit | aa0ebdfe2d12829d8ee6dde5e841e1c67c9141c2 (patch) | |
| tree | 654f6cc97175b095cb45c11978aa5ecd923567b4 /drivers | |
| parent | eb3869c6ea51f807e4bf7692a896b6deb3d0c17e (diff) | |
| parent | f30b020e969487c9ef7a925045954e6bcbaf1583 (diff) | |
Merge "msm: gvmq: avoid uninitialized access for data member"
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/soc/qcom/qdsp6v2/apr_vm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/soc/qcom/qdsp6v2/apr_vm.c b/drivers/soc/qcom/qdsp6v2/apr_vm.c index bb5ba663c6a8..52c12bb819d2 100644 --- a/drivers/soc/qcom/qdsp6v2/apr_vm.c +++ b/drivers/soc/qcom/qdsp6v2/apr_vm.c @@ -380,7 +380,7 @@ static int apr_vm_nb_receive(int32_t handle, void *dest_buff, static int apr_vm_cb_process_evt(char *buf, int len) { - struct apr_client_data data; + struct apr_client_data data = {0,}; struct apr_client *apr_client; struct apr_svc *c_svc; struct apr_hdr *hdr; |
