mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-24 04:34:08 +08:00
NFC: st95hf: Fix memleak in st95hf_in_send_cmd
When down_killable() fails, skb_resp should be freed just like when st95hf_spi_send() fails. Signed-off-by: Dinghao Liu <dinghao.liu@zju.edu.cn> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
799b87120c
commit
f97c04c316
@ -966,7 +966,7 @@ static int st95hf_in_send_cmd(struct nfc_digital_dev *ddev,
|
|||||||
rc = down_killable(&stcontext->exchange_lock);
|
rc = down_killable(&stcontext->exchange_lock);
|
||||||
if (rc) {
|
if (rc) {
|
||||||
WARN(1, "Semaphore is not found up in st95hf_in_send_cmd\n");
|
WARN(1, "Semaphore is not found up in st95hf_in_send_cmd\n");
|
||||||
return rc;
|
goto free_skb_resp;
|
||||||
}
|
}
|
||||||
|
|
||||||
rc = st95hf_spi_send(&stcontext->spicontext, skb->data,
|
rc = st95hf_spi_send(&stcontext->spicontext, skb->data,
|
||||||
|
Loading…
Reference in New Issue
Block a user