dect
/
linux-2.6
Archived
13
0
Fork 0

Bluetooth: Fix memory leak under page timeouts

If the remote device is not present, the connections attemp fails and
the struct hci_conn was not freed

Signed-off-by: Tomas Targownik <ttargownik@geicp.com>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
This commit is contained in:
Tomas Targownik 2011-06-30 16:30:44 -03:00 committed by Gustavo F. Padovan
parent 9fa7e4f76f
commit 163f4dabea
1 changed files with 3 additions and 0 deletions

View File

@ -393,6 +393,9 @@ int hci_conn_del(struct hci_conn *conn)
hci_dev_put(hdev);
if (conn->handle == 0)
kfree(conn);
return 0;
}