From: Pan Bian Date: Thu, 21 Jan 2021 07:34:19 +0000 (-0800) Subject: Bluetooth: drop HCI device reference before return X-Git-Tag: io_uring-worker.v3-2021-02-25~99^2~74^2~22 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=5a3ef03afe7e12982dc3b978f4c5077c907f7501;p=linux-block.git Bluetooth: drop HCI device reference before return Call hci_dev_put() to decrement reference count of HCI device hdev if fails to duplicate memory. Fixes: 0b26ab9dce74 ("Bluetooth: AMP: Handle Accept phylink command status evt") Signed-off-by: Pan Bian Signed-off-by: Marcel Holtmann --- diff --git a/net/bluetooth/a2mp.c b/net/bluetooth/a2mp.c index cc26e4c047ad..463bad58478b 100644 --- a/net/bluetooth/a2mp.c +++ b/net/bluetooth/a2mp.c @@ -512,6 +512,7 @@ static int a2mp_createphyslink_req(struct amp_mgr *mgr, struct sk_buff *skb, assoc = kmemdup(req->amp_assoc, assoc_len, GFP_KERNEL); if (!assoc) { amp_ctrl_put(ctrl); + hci_dev_put(hdev); return -ENOMEM; }