]> git.baikalelectronics.ru Git - kernel.git/commit
net: qrtr: Fix passing invalid reference to qrtr_local_enqueue()
authorManivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
Tue, 19 May 2020 18:14:16 +0000 (23:44 +0530)
committerDavid S. Miller <davem@davemloft.net>
Fri, 22 May 2020 00:04:53 +0000 (17:04 -0700)
commitce3bd85e071fd854c4eba9c0b11262a13f12816c
treed9fad8e096e79975fafe84815dc8fbbd5dac9219
parent5d130753cea906f539a091d5981a61b373125c51
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: a1126d35dd1a ("net: Add Qualcomm IPC router")
Reported-by: kbuild test robot <lkp@intel.com>
Reported-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/qrtr/qrtr.c