Commit eec13816 authored by Yoann Lopes's avatar Yoann Lopes Committed by The Qt Project
Browse files

Fix crash in QCameraInfo when no camera is available on the system.


Change-Id: I04bea9d6afcf567c64788c3765cc6626dc9cd482
Reviewed-by: default avatarChristian Stromme <christian.stromme@digia.com>
Showing with 1 addition and 1 deletion
...@@ -104,7 +104,7 @@ QCameraInfo::QCameraInfo(const QCamera &camera) ...@@ -104,7 +104,7 @@ QCameraInfo::QCameraInfo(const QCamera &camera)
: d(new QCameraInfoPrivate) : d(new QCameraInfoPrivate)
{ {
const QVideoDeviceSelectorControl *deviceControl = camera.d_func()->deviceControl; const QVideoDeviceSelectorControl *deviceControl = camera.d_func()->deviceControl;
if (deviceControl) { if (deviceControl && deviceControl->deviceCount() > 0) {
const int selectedDevice = deviceControl->selectedDevice(); const int selectedDevice = deviceControl->selectedDevice();
d->deviceName = deviceControl->deviceName(selectedDevice); d->deviceName = deviceControl->deviceName(selectedDevice);
d->description = deviceControl->deviceDescription(selectedDevice); d->description = deviceControl->deviceDescription(selectedDevice);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment