Merge "Device stuck in boot due to ArrayIndexOutOfBoundsException" am: f4c1b063bf am: f383574a15
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2627933 Change-Id: I6223f5b6dcbe699a22af31b317bff2e5b87bb7c7 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
@@ -390,7 +390,7 @@ public class Installer extends SystemService {
|
||||
args[j] = mArgs.get(i + j);
|
||||
}
|
||||
final CreateAppDataResult[] results = installer.createAppDataBatched(args);
|
||||
for (int j = 0; j < args.length; j++) {
|
||||
for (int j = 0; j < results.length; j++) {
|
||||
final CreateAppDataResult result = results[j];
|
||||
final CompletableFuture<Long> future = mFutures.get(i + j);
|
||||
if (result.exceptionCode == 0) {
|
||||
|
||||
Reference in New Issue
Block a user