mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-01-02 09:35:18 -05:00
media: gspca: null check create_singlethread_workqueue
In sd_start the 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:
committed by
Mauro Carvalho Chehab
parent
e6f45ea2e7
commit
68085f314d
@@ -276,6 +276,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;
|
||||
|
||||
Reference in New Issue
Block a user