commit | de390ae0ff02003defe8f245d2a27131b4ccc8e2 | [log] [tgz] |
---|---|---|
author | maxwen <max.weninger@gmail.com> | Sat Apr 21 16:26:23 2018 +0200 |
committer | maxwen <max.weninger@gmail.com> | Sat Apr 21 16:27:20 2018 +0200 |
tree | af81ccc4d794db2c0f73708fa18ee88b3d2f356e | |
parent | 3d9153bdf464015e5ee306233af0950668fc6e97 [diff] |
OmniGears: catch possible NPE in TimeInState Change-Id: I79d626654dc017521de4f85e7dcbcce4c3792e36
diff --git a/src/org/omnirom/omnigears/system/TimeInState.java b/src/org/omnirom/omnigears/system/TimeInState.java index fa7ad51..69008d1 100644 --- a/src/org/omnirom/omnigears/system/TimeInState.java +++ b/src/org/omnirom/omnigears/system/TimeInState.java
@@ -502,7 +502,9 @@ long total = monitor.getTotalStateTime(0, true); if (activeMode) { CpuState deepSleepState = monitor.getDeepSleepState(); - return total - deepSleepState.getDuration(); + if (deepSleepState != null) { + return total - deepSleepState.getDuration(); + } } return total; }