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

Commit 947802e0 authored by Erik Wolsheimer's avatar Erik Wolsheimer
Browse files

For loop condition fix

Change-Id: I5bddde2ea0bbbcfb4d16c91fc4ddc98a49040e10
parent a19ddec9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2900,7 +2900,7 @@ public class PackageManagerService extends IPackageManager.Stub
                final List<String> changedAbiCodePath =
                        adjustCpuAbisForSharedUserLPw(setting.packages, null /*scannedPackage*/);
                if (changedAbiCodePath != null && changedAbiCodePath.size() > 0) {
                    for (int i = changedAbiCodePath.size() - 1; i <= 0; --i) {
                    for (int i = changedAbiCodePath.size() - 1; i >= 0; --i) {
                        final String codePathString = changedAbiCodePath.get(i);
                        try {
                            mInstaller.rmdex(codePathString,