diff options
| -rw-r--r-- | drivers/input/misc/uinput.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/input/misc/uinput.c b/drivers/input/misc/uinput.c index 158c8e845ff9..98710997aaaa 100644 --- a/drivers/input/misc/uinput.c +++ b/drivers/input/misc/uinput.c | |||
| @@ -298,9 +298,11 @@ static int uinput_alloc_device(struct file *file, const char __user *buffer, siz | |||
| 298 | /* check if absmin/absmax/absfuzz/absflat are filled as | 298 | /* check if absmin/absmax/absfuzz/absflat are filled as |
| 299 | * told in Documentation/input/input-programming.txt */ | 299 | * told in Documentation/input/input-programming.txt */ |
| 300 | if (test_bit(EV_ABS, dev->evbit)) { | 300 | if (test_bit(EV_ABS, dev->evbit)) { |
| 301 | retval = uinput_validate_absbits(dev); | 301 | int err = uinput_validate_absbits(dev); |
| 302 | if (retval < 0) | 302 | if (err < 0) { |
| 303 | retval = err; | ||
| 303 | kfree(dev->name); | 304 | kfree(dev->name); |
| 305 | } | ||
| 304 | } | 306 | } |
| 305 | 307 | ||
| 306 | exit: | 308 | exit: |
