27 lines
1008 B
Diff
27 lines
1008 B
Diff
From d76a1c23cb4a61bac8e1cdc33bca4201b5c1972f Mon Sep 17 00:00:00 2001
|
|
From: Pierre-Hugues Husson <phh@phh.me>
|
|
Date: Sun, 19 Aug 2018 23:05:26 +0200
|
|
Subject: [PATCH 04/11] We might not have a mFlashlight at this state, but
|
|
that's ok
|
|
|
|
---
|
|
services/camera/libcameraservice/CameraService.cpp | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/services/camera/libcameraservice/CameraService.cpp b/services/camera/libcameraservice/CameraService.cpp
|
|
index 3736a9e24..12ab2f47e 100644
|
|
--- a/services/camera/libcameraservice/CameraService.cpp
|
|
+++ b/services/camera/libcameraservice/CameraService.cpp
|
|
@@ -279,7 +279,7 @@ void CameraService::addStates(const String8 id) {
|
|
conflicting));
|
|
}
|
|
|
|
- if (mFlashlight->hasFlashUnit(id)) {
|
|
+ if (mFlashlight != nullptr && mFlashlight->hasFlashUnit(id)) {
|
|
Mutex::Autolock al(mTorchStatusMutex);
|
|
mTorchStatusMap.add(id, TorchModeStatus::AVAILABLE_OFF);
|
|
|
|
--
|
|
2.17.1
|
|
|