summaryrefslogtreecommitdiffstats
path: root/drivers/input/serio/serio.c
diff options
context:
space:
mode:
authorAdrian Bunk2006-03-14 06:13:29 +0100
committerDmitry Torokhov2006-03-14 06:13:29 +0100
commit9d921116cc5e27c1950b7e7508fdefec04a69963 (patch)
treeb7898d86357cb4fc6a5e44bbc93b8ebe52ffe631 /drivers/input/serio/serio.c
parentInput: zaurus keyboard driver updates (diff)
downloadkernel-qcow2-linux-9d921116cc5e27c1950b7e7508fdefec04a69963.tar.gz
kernel-qcow2-linux-9d921116cc5e27c1950b7e7508fdefec04a69963.tar.xz
kernel-qcow2-linux-9d921116cc5e27c1950b7e7508fdefec04a69963.zip
Input: serio - fix memory leak
Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/serio/serio.c')
-rw-r--r--drivers/input/serio/serio.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/input/serio/serio.c b/drivers/input/serio/serio.c
index 966600779b70..6521034bc933 100644
--- a/drivers/input/serio/serio.c
+++ b/drivers/input/serio/serio.c
@@ -196,6 +196,7 @@ static void serio_queue_event(void *object, struct module *owner,
if ((event = kmalloc(sizeof(struct serio_event), GFP_ATOMIC))) {
if (!try_module_get(owner)) {
printk(KERN_WARNING "serio: Can't get module reference, dropping event %d\n", event_type);
+ kfree(event);
goto out;
}