diff options
author | Peter Hurley <peter@hurleysoftware.com> | 2011-08-05 18:51:34 +0400 |
---|---|---|
committer | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-08-12 02:50:28 +0400 |
commit | 1c97e94c0b7c56319754ee6f9ccd2e93fe1ee2b3 (patch) | |
tree | ae81066ef61c5ab6a081d6f5fedd5089a15e9bca /net/bluetooth | |
parent | e9d5cb541b22aa651edc29990092ec5f8174cd39 (diff) | |
download | linux-1c97e94c0b7c56319754ee6f9ccd2e93fe1ee2b3.tar.xz |
Bluetooth: hidp: Fix memory leak of cached report descriptor
Free the cached HID report descriptor on thread terminate.
Signed-off-by: Peter Hurley <peter@hurleysoftware.com>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'net/bluetooth')
-rw-r--r-- | net/bluetooth/hidp/core.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/bluetooth/hidp/core.c b/net/bluetooth/hidp/core.c index 7e19a012970e..26f0d109ff41 100644 --- a/net/bluetooth/hidp/core.c +++ b/net/bluetooth/hidp/core.c @@ -764,6 +764,7 @@ static int hidp_session(void *arg) up_write(&hidp_session_sem); + kfree(session->rd_data); kfree(session); return 0; } |