Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3ddc5396 authored by Devin Moore's avatar Devin Moore Committed by Automerger Merge Worker
Browse files

Allow sensors list to be empty am: d86376e2 am: 7a715246

parents 3c03cdc3 7a715246
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -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");