diff options
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/gameport/gameport.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/input/gameport/gameport.c b/drivers/input/gameport/gameport.c index bcfd700829a1..36644bff379d 100644 --- a/drivers/input/gameport/gameport.c +++ b/drivers/input/gameport/gameport.c | |||
@@ -266,6 +266,7 @@ static void gameport_queue_event(void *object, struct module *owner, | |||
266 | if ((event = kmalloc(sizeof(struct gameport_event), GFP_ATOMIC))) { | 266 | if ((event = kmalloc(sizeof(struct gameport_event), GFP_ATOMIC))) { |
267 | if (!try_module_get(owner)) { | 267 | if (!try_module_get(owner)) { |
268 | printk(KERN_WARNING "gameport: Can't get module reference, dropping event %d\n", event_type); | 268 | printk(KERN_WARNING "gameport: Can't get module reference, dropping event %d\n", event_type); |
269 | kfree(event); | ||
269 | goto out; | 270 | goto out; |
270 | } | 271 | } |
271 | 272 | ||