mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-20 16:46:23 +08:00
Bluetooth: Cleanup blkcipher on SMP termination
The blkcipher must be freed to avoid memory leak. Signed-off-by: Brian Gix <bgix@codeaurora.org> Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
This commit is contained in:
parent
1143d45846
commit
c8eb969071
@ -379,7 +379,15 @@ static struct smp_chan *smp_chan_create(struct l2cap_conn *conn)
|
|||||||
|
|
||||||
void smp_chan_destroy(struct l2cap_conn *conn)
|
void smp_chan_destroy(struct l2cap_conn *conn)
|
||||||
{
|
{
|
||||||
kfree(conn->smp_chan);
|
struct smp_chan *smp = conn->smp_chan;
|
||||||
|
|
||||||
|
clear_bit(HCI_CONN_LE_SMP_PEND, &conn->hcon->pend);
|
||||||
|
|
||||||
|
if (smp->tfm)
|
||||||
|
crypto_free_blkcipher(smp->tfm);
|
||||||
|
|
||||||
|
kfree(smp);
|
||||||
|
conn->smp_chan = NULL;
|
||||||
hci_conn_put(conn->hcon);
|
hci_conn_put(conn->hcon);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user