]> Git Repo - linux.git/commit
net: qrtr: Fix passing invalid reference to qrtr_local_enqueue()
authorManivannan Sadhasivam <[email protected]>
Tue, 19 May 2020 18:14:16 +0000 (23:44 +0530)
committerDavid S. Miller <[email protected]>
Fri, 22 May 2020 00:04:53 +0000 (17:04 -0700)
commitd28ea1fbbf437054ef339afec241019f2c4e2bb6
treed9fad8e096e79975fafe84815dc8fbbd5dac9219
parent7c87e32d2e380228ada79d20ac5b7674718ef097
net: qrtr: Fix passing invalid reference to qrtr_local_enqueue()

Once the traversal of the list is completed with list_for_each_entry(),
the iterator (node) will point to an invalid object. So passing this to
qrtr_local_enqueue() which is outside of the iterator block is erroneous
eventhough the object is not used.

So fix this by passing NULL to qrtr_local_enqueue().

Fixes: bdabad3e363d ("net: Add Qualcomm IPC router")
Reported-by: kbuild test robot <[email protected]>
Reported-by: Julia Lawall <[email protected]>
Signed-off-by: Manivannan Sadhasivam <[email protected]>
Reviewed-by: Bjorn Andersson <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
net/qrtr/qrtr.c
This page took 0.053432 seconds and 4 git commands to generate.