[PATCH] HID: hyperv: fix possible memory leak in mousevsc_probe()

Subsystems: hid core layer, hyper-v/azure core and drivers, the rest

STALE1371d

3 messages, 3 authors, 2022-11-02 · open the first message on its own page

[PATCH] HID: hyperv: fix possible memory leak in mousevsc_probe()

From: Yang Yingliang <hidden>
Date: 2022-10-28 13:42:56

If hid_add_device() returns error, it should call hid_destroy_device()
to free hid_dev which is allocated in hid_allocate_device().

Fixes: 74c4fb058083 ("HID: hv_mouse: Properly add the hid device")
Signed-off-by: Yang Yingliang <redacted>
---
 drivers/hid/hid-hyperv.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/hid/hid-hyperv.c b/drivers/hid/hid-hyperv.c
index e0bc73124196..ab57b49a44ed 100644
--- a/drivers/hid/hid-hyperv.c
+++ b/drivers/hid/hid-hyperv.c
@@ -499,7 +499,7 @@ static int mousevsc_probe(struct hv_device *device,
 
 	ret = hid_add_device(hid_dev);
 	if (ret)
-		goto probe_err1;
+		goto probe_err2;
 
 
 	ret = hid_parse(hid_dev);
-- 
2.25.1

Re: [PATCH] HID: hyperv: fix possible memory leak in mousevsc_probe()

From: Wei Liu <wei.liu@kernel.org>
Date: 2022-11-01 10:45:20

On Fri, Oct 28, 2022 at 09:40:43PM +0800, Yang Yingliang wrote:
If hid_add_device() returns error, it should call hid_destroy_device()
to free hid_dev which is allocated in hid_allocate_device().

Fixes: 74c4fb058083 ("HID: hv_mouse: Properly add the hid device")
Signed-off-by: Yang Yingliang <redacted>
Reviewed-by: Wei Liu <wei.liu@kernel.org>

Re: [PATCH] HID: hyperv: fix possible memory leak in mousevsc_probe()

From: Jiri Kosina <jikos@kernel.org>
Date: 2022-11-02 13:34:14

On Fri, 28 Oct 2022, Yang Yingliang wrote:
quoted hunk
If hid_add_device() returns error, it should call hid_destroy_device()
to free hid_dev which is allocated in hid_allocate_device().

Fixes: 74c4fb058083 ("HID: hv_mouse: Properly add the hid device")
Signed-off-by: Yang Yingliang <redacted>
---
 drivers/hid/hid-hyperv.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/hid/hid-hyperv.c b/drivers/hid/hid-hyperv.c
index e0bc73124196..ab57b49a44ed 100644
--- a/drivers/hid/hid-hyperv.c
+++ b/drivers/hid/hid-hyperv.c
@@ -499,7 +499,7 @@ static int mousevsc_probe(struct hv_device *device,
 
 	ret = hid_add_device(hid_dev);
 	if (ret)
-		goto probe_err1;
+		goto probe_err2;
 
Good catch, applied, thank you.

-- 
Jiri Kosina
SUSE Labs
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help