Prevent division-by-zero error when calculating battery capacity.
am: 415f8b32e8
Change-Id: Ie58c329fa0814111291922b9a669ca181d4a487f
This commit is contained in:
committed by
android-build-merger
commit
b87f8900ce
@@ -9612,7 +9612,7 @@ public class BatteryStatsImpl extends BatteryStats {
|
||||
}
|
||||
doWrite = true;
|
||||
resetAllStatsLocked();
|
||||
if (chargeUAh > 0) {
|
||||
if (chargeUAh > 0 && level > 0) {
|
||||
// Only use the reported coulomb charge value if it is supported and reported.
|
||||
mEstimatedBatteryCapacity = (int) ((chargeUAh / 1000) / (level / 100.0));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user