forked from Minki/linux
media: usb: null check create_singlethread_workqueue
In sd_start return value of create_singlethread_workqueue needs null check. Signed-off-by: Navid Emamdoost <navid.emamdoost@gmail.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
This commit is contained in:
parent
68085f314d
commit
8dbdee8e8a
@ -378,6 +378,9 @@ static int sd_start(struct gspca_dev *gspca_dev)
|
||||
}
|
||||
/* Start the workqueue function to do the streaming */
|
||||
dev->work_thread = create_singlethread_workqueue(MODULE_NAME);
|
||||
if (!dev->work_thread)
|
||||
return -ENOMEM;
|
||||
|
||||
queue_work(dev->work_thread, &dev->work_struct);
|
||||
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user