diff options
| author | Marcel Sebek <sebek64@post.cz> | 2004-03-08 14:51:07 +0100 |
|---|---|---|
| committer | Vojtech Pavlik <vojtech@suse.cz> | 2004-03-08 14:51:07 +0100 |
| commit | bb2d2571f0a26a239bc41796f0b3a3cc63402fb9 (patch) | |
| tree | e9a47c0368b64b090d4783184fe43c11c78fbdef | |
| parent | fedb02dfa95b05b1305f66da138c717930bf966f (diff) | |
input: Fix a memory leak in ns558.c
| -rw-r--r-- | drivers/input/gameport/ns558.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/input/gameport/ns558.c b/drivers/input/gameport/ns558.c index e85706281d37..4b52ffe25d95 100644 --- a/drivers/input/gameport/ns558.c +++ b/drivers/input/gameport/ns558.c @@ -289,6 +289,7 @@ void __exit ns558_exit(void) #endif case NS558_ISA: release_region(port->gameport.io & ~(port->size - 1), port->size); + kfree(port); break; default: |
