am e6045537: am 7a1b5d5d: Merge "Fix crash in SensorService. Ignore devices with no sensors." into mnc-dev

* commit 'e6045537bbce4c4f98e6a1149187bbcdaff57bcd':
  Fix crash in SensorService. Ignore devices with no sensors.
This commit is contained in:
Aravind Akella 2015-06-24 16:08:13 +00:00 committed by Android Git Automerger
commit 12b26278df
1 changed files with 2 additions and 0 deletions

View File

@ -276,6 +276,8 @@ status_t SensorService::dump(int fd, const Vector<String16>& args)
dev.enableAllSensors();
}
return status_t(NO_ERROR);
} else if (mSensorList.size() == 0) {
result.append("No Sensors on the device\n");
} else {
// Default dump the sensor list and debugging information.
result.append("Sensor List:\n");