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;
     }