commit | b6e02f7b0978a2c0b4ae4aaafc7d9907267410be | [log] [tgz] |
---|---|---|
author | Alex Buynytskyy <alexbuy@google.com> | Tue Mar 17 18:12:23 2020 -0700 |
committer | Alex Buynytskyy <alexbuy@google.com> | Wed Mar 18 09:01:36 2020 -0700 |
tree | ab5856ee5eeee8b622e959c7280ff9badc9f21c9 | |
parent | 8ad736720c5dd583ae3e8bcb33dc35099f9b3c92 [diff] [blame] |
Removing race condition accessing shared binder object. Test: incrementally installing two apks at the same time Bug: b/150411019 Change-Id: I81231edf7a32470542ec529aa305b4f9fb2b80e3
diff --git a/services/incremental/IncrementalService.cpp b/services/incremental/IncrementalService.cpp index 7275936..e452415 100644 --- a/services/incremental/IncrementalService.cpp +++ b/services/incremental/IncrementalService.cpp
@@ -941,7 +941,7 @@ if (!dataloader) { return false; } - status = dataloader->start(); + status = dataloader->start(mountId); if (!status.isOk()) { return false; }