Loading libs/sensor/SensorManager.cpp +2 −5 Original line number Original line Diff line number Diff line Loading @@ -176,11 +176,8 @@ status_t SensorManager::assertStateLocked() { mSensors = mSensorServer->getSensorList(mOpPackageName); mSensors = mSensorServer->getSensorList(mOpPackageName); size_t count = mSensors.size(); size_t count = mSensors.size(); if (count == 0) { // If count is 0, mSensorList will be non-null. This is old ALOGE("Failed to get Sensor list"); // existing behavior and callers expect this. mSensorServer.clear(); return UNKNOWN_ERROR; } mSensorList = mSensorList = static_cast<Sensor const**>(malloc(count * sizeof(Sensor*))); static_cast<Sensor const**>(malloc(count * sizeof(Sensor*))); LOG_ALWAYS_FATAL_IF(mSensorList == nullptr, "mSensorList NULL"); LOG_ALWAYS_FATAL_IF(mSensorList == nullptr, "mSensorList NULL"); Loading Loading
libs/sensor/SensorManager.cpp +2 −5 Original line number Original line Diff line number Diff line Loading @@ -176,11 +176,8 @@ status_t SensorManager::assertStateLocked() { mSensors = mSensorServer->getSensorList(mOpPackageName); mSensors = mSensorServer->getSensorList(mOpPackageName); size_t count = mSensors.size(); size_t count = mSensors.size(); if (count == 0) { // If count is 0, mSensorList will be non-null. This is old ALOGE("Failed to get Sensor list"); // existing behavior and callers expect this. mSensorServer.clear(); return UNKNOWN_ERROR; } mSensorList = mSensorList = static_cast<Sensor const**>(malloc(count * sizeof(Sensor*))); static_cast<Sensor const**>(malloc(count * sizeof(Sensor*))); LOG_ALWAYS_FATAL_IF(mSensorList == nullptr, "mSensorList NULL"); LOG_ALWAYS_FATAL_IF(mSensorList == nullptr, "mSensorList NULL"); Loading