Merge "Avoid division by zero in storage." into nyc-dev

This commit is contained in:
Jeff Sharkey
2016-02-18 22:45:07 +00:00
committed by Android (Google) Code Review

View File

@@ -39,7 +39,11 @@ public class StorageItemPreference extends Preference {
public void setStorageSize(long size, long total) {
setSummary(Formatter.formatFileSize(getContext(), size));
progress = (int)(size * PROGRESS_MAX / total);
if (total == 0) {
progress = 0;
} else {
progress = (int)(size * PROGRESS_MAX / total);
}
updateProgressBar();
}