diff options
Diffstat (limited to 'services/camera/libcameraservice/CameraService.cpp')
| -rw-r--r-- | services/camera/libcameraservice/CameraService.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/services/camera/libcameraservice/CameraService.cpp b/services/camera/libcameraservice/CameraService.cpp index 43a8ec4..9a1101a 100644 --- a/services/camera/libcameraservice/CameraService.cpp +++ b/services/camera/libcameraservice/CameraService.cpp @@ -363,7 +363,7 @@ void CameraService::onTorchStatusChangedLocked(const String8& cameraId,      {          // Update battery life logging for flashlight -        Mutex::Autolock al(mTorchClientMapMutex); +        Mutex::Autolock al(mTorchUidMapMutex);          auto iter = mTorchUidMap.find(cameraId);          if (iter != mTorchUidMap.end()) {              int oldUid = iter->second.second; @@ -1262,7 +1262,7 @@ status_t CameraService::setTorchMode(const String16& cameraId, bool enabled,      {          // Update UID map - this is used in the torch status changed callbacks, so must be done          // before setTorchMode -        Mutex::Autolock al(mTorchClientMapMutex); +        Mutex::Autolock al(mTorchUidMapMutex);          if (mTorchUidMap.find(id) == mTorchUidMap.end()) {              mTorchUidMap[id].first = uid;              mTorchUidMap[id].second = uid;  | 
