Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 90558bd6 authored by John Spurlock's avatar John Spurlock Committed by Android Git Automerger
Browse files

am 5eb91627: am 7739a5ca: am f5df689a: Fix NPE inside DreamManagerService.

* commit '5eb91627':
  Fix NPE inside DreamManagerService.
parents f0369feb 5eb91627
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -385,6 +385,9 @@ public final class DreamManagerService extends IDreamManager.Stub {
    }

    private static ComponentName[] componentsFromString(String names) {
        if (names == null) {
            return null;
        }
        String[] namesArray = names.split(",");
        ComponentName[] componentNames = new ComponentName[namesArray.length];
        for (int i = 0; i < namesArray.length; i++) {