2011-08-05 14:51:34

by Peter Hurley

[permalink] [raw]
Subject: [PATCH 2/4] Bluetooth: hidp: Fix memory leak of cached report descriptor

Free the cached HID report descriptor on thread terminate.

Signed-off-by: Peter Hurley <[email protected]>
---
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 7e19a01..26f0d10 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;
}
--
1.7.4.1