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

Commit 314aec32 authored by Song Chun Fan's avatar Song Chun Fan Committed by Android (Google) Code Review
Browse files

Merge "[conflict] Merge "[Bugfix]fix NullPointException when PackageInfo's...

Merge "[conflict] Merge "[Bugfix]fix NullPointException when PackageInfo's verifiers is null " am: 56535ae5 am: 28f1ea0a am: f38ef8a9"
parents 87cd484e f4fd228d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -707,7 +707,7 @@ final class VerifyingSession {

    private List<ComponentName> matchVerifiers(PackageInfoLite pkgInfo,
            List<ResolveInfo> receivers, final PackageVerificationState verificationState) {
        if (pkgInfo.verifiers.length == 0) {
        if (pkgInfo.verifiers == null || pkgInfo.verifiers.length == 0) {
            return null;
        }