mirror of
https://github.com/torvalds/linux.git
synced 2024-11-27 06:31:52 +00:00
Staging: comedi: comedi_open: Fix null pointer dereference.
This can happen if other minor devices are used. From: Ian Abbott <abbotti@mev.co.uk> Cc: Frank Mori Hess <fmhess@users.sourceforge.net> Cc: David Schleef <ds@schleef.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
56d92c60e6
commit
979200719d
@ -1760,7 +1760,8 @@ static int comedi_open(struct inode *inode, struct file *file)
|
||||
const unsigned minor = iminor(inode);
|
||||
struct comedi_device_file_info *dev_file_info =
|
||||
comedi_get_device_file_info(minor);
|
||||
comedi_device *dev = dev_file_info->device;
|
||||
comedi_device *dev = dev_file_info ? dev_file_info->device : NULL;
|
||||
|
||||
if (dev == NULL) {
|
||||
DPRINTK("invalid minor number\n");
|
||||
return -ENODEV;
|
||||
|
Loading…
Reference in New Issue
Block a user