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

Commit 56535ae5 authored by Song Chun Fan's avatar Song Chun Fan Committed by Gerrit Code Review
Browse files

Merge "[Bugfix]fix NullPointException when PackageInfo's verifiers is null "

parents b49f8e2e d02a6d88
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -643,7 +643,7 @@ final class VerificationParams extends HandlerParams {

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