projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dd9b15d
)
staging: hv: fix memory leaks
author
Alexander Beregalov
<
[email protected]
>
Sun, 13 Mar 2011 18:58:49 +0000
(21:58 +0300)
committer
Greg Kroah-Hartman
<
[email protected]
>
Mon, 14 Mar 2011 19:38:15 +0000
(12:38 -0700)
Free resources before exit.
Signed-off-by: Alexander Beregalov <
[email protected]
>
Cc: K. Y. Srinivasan <
[email protected]
>
Cc: Haiyang Zhang <
[email protected]
>
Cc: Mike Sterling <
[email protected]
>
Cc: Abhishek Kane <
[email protected]
>
Cc: Hank Janssen <
[email protected]
>
Signed-off-by: Greg Kroah-Hartman <
[email protected]
>
drivers/staging/hv/hv_mouse.c
patch
|
blob
|
history
diff --git
a/drivers/staging/hv/hv_mouse.c
b/drivers/staging/hv/hv_mouse.c
index 6fa462109ce973eea48968ba5c9b741c91160fc5..50147f84741cbef6f23a3828711a2c2a8116a073 100644
(file)
--- a/
drivers/staging/hv/hv_mouse.c
+++ b/
drivers/staging/hv/hv_mouse.c
@@
-684,6
+684,7
@@
static int MousevscOnDeviceAdd(struct hv_device *Device, void *AdditionalInfo)
if (ret != 0) {
pr_err("unable to open channel: %d", ret);
+ FreeInputDevice(inputDevice);
return -1;
}
@@
-695,6
+696,7
@@
static int MousevscOnDeviceAdd(struct hv_device *Device, void *AdditionalInfo)
pr_err("unable to connect channel: %d", ret);
vmbus_close(Device->channel);
+ FreeInputDevice(inputDevice);
return ret;
}