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:
Родитель
e6f45ea2e7
Коммит
68085f314d
|
@ -276,6 +276,9 @@ static int sd_start(struct gspca_dev *gspca_dev)
|
||||||
}
|
}
|
||||||
/* Start the workqueue function to do the streaming */
|
/* Start the workqueue function to do the streaming */
|
||||||
dev->work_thread = create_singlethread_workqueue(MODULE_NAME);
|
dev->work_thread = create_singlethread_workqueue(MODULE_NAME);
|
||||||
|
if (!dev->work_thread)
|
||||||
|
return -ENOMEM;
|
||||||
|
|
||||||
queue_work(dev->work_thread, &dev->work_struct);
|
queue_work(dev->work_thread, &dev->work_struct);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче