mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
nfc: fix potential illegal memory access
[ Upstream commit dd006fc434e107ef90f7de0db9907cbc1c521645 ] The frags_q is not properly initialized, it may result in illegal memory access when conn_info is NULL. The "goto free_exit" should be replaced by "goto exit". Signed-off-by: Yang Wei <albin_yang@163.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
fb0691c787
commit
d2814b0325
@ -119,7 +119,7 @@ static int nci_queue_tx_data_frags(struct nci_dev *ndev,
|
||||
conn_info = nci_get_conn_info_by_conn_id(ndev, conn_id);
|
||||
if (!conn_info) {
|
||||
rc = -EPROTO;
|
||||
goto free_exit;
|
||||
goto exit;
|
||||
}
|
||||
|
||||
__skb_queue_head_init(&frags_q);
|
||||
|
Loading…
x
Reference in New Issue
Block a user