Loading services/core/java/com/android/server/pm/PackageInstallerService.java +4 −1 Original line number Diff line number Diff line Loading @@ -410,7 +410,10 @@ public class PackageInstallerService extends IPackageInstaller.Stub implements // Their staging dirs will be removed too PackageInstallerSession root = !session.hasParentSessionId() ? session : mSessions.get(session.getParentSessionId()); if (!root.isDestroyed()) { if (root == null) { Slog.e(TAG, "freeStageDirs: found an orphaned session: " + session.sessionId + " parent=" + session.getParentSessionId()); } else if (!root.isDestroyed()) { root.abandon(); } } else { Loading Loading
services/core/java/com/android/server/pm/PackageInstallerService.java +4 −1 Original line number Diff line number Diff line Loading @@ -410,7 +410,10 @@ public class PackageInstallerService extends IPackageInstaller.Stub implements // Their staging dirs will be removed too PackageInstallerSession root = !session.hasParentSessionId() ? session : mSessions.get(session.getParentSessionId()); if (!root.isDestroyed()) { if (root == null) { Slog.e(TAG, "freeStageDirs: found an orphaned session: " + session.sessionId + " parent=" + session.getParentSessionId()); } else if (!root.isDestroyed()) { root.abandon(); } } else { Loading