OSDN Git Service

Fixing NPE in onFinishBindingItems (issue 10975740)
authorAdam Cohen <adamcohen@google.com>
Sun, 29 Sep 2013 19:57:34 +0000 (12:57 -0700)
committerAdam Cohen <adamcohen@google.com>
Sun, 29 Sep 2013 19:58:39 +0000 (12:58 -0700)
-> See bug for explanation. Seems like the circumstances leading to this
   NPE are understandable.

Change-Id: I89637a2da50be1081632e05cf79678c983a74d3a

src/com/android/launcher3/Launcher.java

index bf12d79..ba34c13 100644 (file)
@@ -915,7 +915,7 @@ public class Launcher extends Activity
     }
 
     protected void onFinishBindingItems() {
-        if (hasCustomContentToLeft() && mWorkspace.hasCustomContent()) {
+        if (mWorkspace != null && hasCustomContentToLeft() && mWorkspace.hasCustomContent()) {
             addCustomContentToLeft();
         }
     }