media: usbvision: Improve a size determination in usbvision_alloc()

Replace the specification of a data structure by a pointer dereference
as the parameter for the operator "sizeof" to make the corresponding size
determination a bit safer according to the Linux coding style convention.

This issue was detected by using the Coccinelle software.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
Markus Elfring 2017-08-26 16:22:13 -04:00 committed by Mauro Carvalho Chehab
parent c4cdcf9f1e
commit 1fbfd8c13a
1 changed files with 1 additions and 1 deletions

View File

@ -1319,7 +1319,7 @@ static struct usb_usbvision *usbvision_alloc(struct usb_device *dev,
{
struct usb_usbvision *usbvision;
usbvision = kzalloc(sizeof(struct usb_usbvision), GFP_KERNEL);
usbvision = kzalloc(sizeof(*usbvision), GFP_KERNEL);
if (!usbvision)
return NULL;