From: Kumar Amit Mehta Date: Mon, 25 Mar 2013 05:37:48 +0000 (-0700) Subject: staging: vme: fix for a potential NULL pointer dereference X-Git-Tag: next-20130326~26^2~86 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=d4113a69bc9ca518f492b2ad7d2d586cd2ca5803;p=karo-tx-linux.git 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 Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/vme/devices/vme_user.c b/drivers/staging/vme/devices/vme_user.c index d074b1ecb41a..da7f75984979 100644 --- a/drivers/staging/vme/devices/vme_user.c +++ b/drivers/staging/vme/devices/vme_user.c @@ -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);