From: Peter Hurley Date: Fri, 5 Aug 2011 14:51:34 +0000 (-0400) Subject: Bluetooth: hidp: Fix memory leak of cached report descriptor X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=1c97e94c0b7c56319754ee6f9ccd2e93fe1ee2b3;p=~shefty%2Frdma-dev.git Bluetooth: hidp: Fix memory leak of cached report descriptor Free the cached HID report descriptor on thread terminate. Signed-off-by: Peter Hurley Signed-off-by: Gustavo F. Padovan --- diff --git a/net/bluetooth/hidp/core.c b/net/bluetooth/hidp/core.c index 7e19a012970..26f0d109ff4 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; }