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

Commit 314fcf45 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Fix the application startup failure caused by the abnormal state value...

Merge "Fix the application startup failure caused by the abnormal state value of ceDataInode in version V." into main
parents f06da9bd 67641437
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2390,8 +2390,8 @@ public final class ProcessList {
            }
            String volumeUuid = packageState.getVolumeUuid();
            long inode = packageState.getUserStateOrDefault(userId).getCeDataInode();
            if (inode == 0) {
                Slog.w(TAG, packageName + " inode == 0 (b/152760674)");
            if (inode <= 0) {
                Slog.w(TAG, packageName + " inode == 0 or app uninstalled with keep-data");
                return null;
            }
            result.put(packageName, Pair.create(volumeUuid, inode));