mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-11 15:49:56 +00:00
staging: vme: fix for a potential NULL pointer dereference
Audit the return value of cdev_alloc and hence fixes a potential NULL pointer dereferencing. Signed-off-by: Kumar Amit Mehta <gmate.amit@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
50e4d3ac03
commit
d4113a69bc
@ -710,6 +710,10 @@ static int vme_user_probe(struct vme_dev *vdev)
|
||||
|
||||
/* Register the driver as a char device */
|
||||
vme_user_cdev = cdev_alloc();
|
||||
if (!vme_user_cdev) {
|
||||
err = -ENOMEM;
|
||||
goto err_char;
|
||||
}
|
||||
vme_user_cdev->ops = &vme_user_fops;
|
||||
vme_user_cdev->owner = THIS_MODULE;
|
||||
err = cdev_add(vme_user_cdev, MKDEV(VME_MAJOR, 0), VME_DEVS);
|
||||
|
Loading…
x
Reference in New Issue
Block a user