mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-10-01 01:35:54 -04:00
964877bbf6
wgetb96ee4a2d1
.patch -O telephony-01.patch wgetc16e6e78c1
.patch -O media-01.patch wgetd5771450d7
.patch -O media-02.patch wgeta1370bd00c
.patch -O nn-01.patch wgetce2776f4ca
.patch -O bt-01.patch wget585f583ef5
.patch -O bt-02.patch wgetc9905e7968
.patch -O bt-03.patch wgetc93ec045f5
.patch -O bt-04.patch wget89fb17d172
.patch -O bt-05.patch wget14aed2455e
.patch -O bt-06.patch wgetcd438ebc52
.patch -O bt-07.patch wget27e7cdc4e5
.patch -O nfc-01.patch wgetdfeb4270b8
.patch -O launcher-01.patch wgetb1993f6cec
.patch -O native-01.patch wgetdf4a9362cd
.patch -O fwb-01.patch wgetb55563bb9d
.patch -O fwb-02.patch wgeta80971a281
.patch -O fwb-03.patch wget7e173b4383
.patch -O fwb-04.patch wget44191b1c6b
.patch -O fwb-05.patch wget8dc8dfe572
.patch -O fwb-06.patch wget00a4224100
.patch -O av-01.patch wget21623d1f43
.patch -O settings-01.patch wgetfa5ec443d9
.patch -O settings-02.patch wgetba4da9c7b3
.patch -O settings-03.patch Signed-off-by: Tad <tad@spotco.us>
35 lines
1.5 KiB
Diff
35 lines
1.5 KiB
Diff
From b1993f6cec45bc638ea1d2875c91d069e89ca57e Mon Sep 17 00:00:00 2001
|
|
From: Devin Moore <devinmoore@google.com>
|
|
Date: Tue, 25 Apr 2023 00:17:13 +0000
|
|
Subject: [PATCH] Allow sensors list to be empty
|
|
|
|
Test: atest VtsHalSensorManagerV1_0TargetTest
|
|
Bug: 278013275
|
|
Bug: 269014004
|
|
(cherry picked from https://googleplex-android-review.googlesource.com/q/commit:49600b10aa5675d4e7e985203d69f252ead13e45)
|
|
(cherry picked from https://googleplex-android-review.googlesource.com/q/commit:d9e0d0ad7cb94b2b2d83066685cee45d76381355)
|
|
Merged-In: I091f57de9570b0ace3a8da76f16fe0e83f0aa624
|
|
Change-Id: I091f57de9570b0ace3a8da76f16fe0e83f0aa624
|
|
---
|
|
libs/sensor/SensorManager.cpp | 7 ++-----
|
|
1 file changed, 2 insertions(+), 5 deletions(-)
|
|
|
|
diff --git a/libs/sensor/SensorManager.cpp b/libs/sensor/SensorManager.cpp
|
|
index 40061cde61..9f814f1c48 100644
|
|
--- a/libs/sensor/SensorManager.cpp
|
|
+++ b/libs/sensor/SensorManager.cpp
|
|
@@ -176,11 +176,8 @@ status_t SensorManager::assertStateLocked() {
|
|
|
|
mSensors = mSensorServer->getSensorList(mOpPackageName);
|
|
size_t count = mSensors.size();
|
|
- if (count == 0) {
|
|
- ALOGE("Failed to get Sensor list");
|
|
- mSensorServer.clear();
|
|
- return UNKNOWN_ERROR;
|
|
- }
|
|
+ // If count is 0, mSensorList will be non-null. This is old
|
|
+ // existing behavior and callers expect this.
|
|
mSensorList =
|
|
static_cast<Sensor const**>(malloc(count * sizeof(Sensor*)));
|
|
LOG_ALWAYS_FATAL_IF(mSensorList == nullptr, "mSensorList NULL");
|