diff options
author | William Light <wrl@illest.net> | 2011-10-10 15:54:22 +0000 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2011-10-13 08:16:42 +0200 |
commit | 3d37fbe44112b06279efa04ad91a0e4b7a0c600c (patch) | |
tree | 630491400d6a8362fa57f8dfc293ee39ea1f6dbf | |
parent | ffd3d5c6c7a20fb718daf98a6c8a476d228f3995 (diff) | |
download | linux-3.10-3d37fbe44112b06279efa04ad91a0e4b7a0c600c.tar.gz linux-3.10-3d37fbe44112b06279efa04ad91a0e4b7a0c600c.tar.bz2 linux-3.10-3d37fbe44112b06279efa04ad91a0e4b7a0c600c.zip |
ALSA: snd-usb-caiaq: Fix NULL dereference in input.c
There was a case where a newly-registered input device could be opened before
a necessary variable in the device structure was set. When code tried to use
the variable in the URB reply callback, it would cause an Oops.
This fix sets the aforementioned variable before calling input_register_device.
Signed-off-by: William Light <wrl@illest.net>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r-- | sound/usb/caiaq/input.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sound/usb/caiaq/input.c b/sound/usb/caiaq/input.c index a213813487b..9efb92e4090 100644 --- a/sound/usb/caiaq/input.c +++ b/sound/usb/caiaq/input.c @@ -664,15 +664,17 @@ int snd_usb_caiaq_input_init(struct snd_usb_caiaqdev *dev) for (i = 0; i < input->keycodemax; i++) __set_bit(dev->keycode[i], input->keybit); + dev->input_dev = input; + ret = input_register_device(input); if (ret < 0) goto exit_free_idev; - dev->input_dev = input; return 0; exit_free_idev: input_free_device(input); + dev->input_dev = NULL; return ret; } |