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

Commit 306175e9 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Check if ParsedMainComponent is null before dereferencing" into tm-qpr-dev

parents a40e02d5 f7e8fc97
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1129,7 +1129,7 @@ public class PackageManagerServiceUtils {
                throw new IllegalArgumentException("Unsupported component type");
            }

            if (comp.getIntents().isEmpty()) {
            if (comp == null || comp.getIntents().isEmpty()) {
                continue;
            }