summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> 2025-01-10 11:48:01 -0800
committer Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> 2025-01-10 11:48:01 -0800
commitff44c1d04a579813ec534d95200340046961e2dc (patch)
tree94e067b0688d2bc489d0831f40cf8e2b07d3356b
parent983b8542975db7ac60d4dc30da21196a62be72dd (diff)
parent3b0a3b560b56cf5726aabd8b98e6e964adcd6170 (diff)
Merge "Fix -Wreorder-init-list" into main am: 9e1b16b3ae am: 3b0a3b560b
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/3446828 Change-Id: I4292641fcf4086b9f12cc6dfb00169dc44e5fd9b Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r--services/incremental/IncrementalService.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/incremental/IncrementalService.cpp b/services/incremental/IncrementalService.cpp
index a8e6f689b424..dae481a3c215 100644
--- a/services/incremental/IncrementalService.cpp
+++ b/services/incremental/IncrementalService.cpp
@@ -1999,9 +1999,9 @@ bool IncrementalService::configureNativeBinaries(StorageId storage, std::string_
// Create new lib file without signature info
incfs::NewFileParams libFileParams = {
.size = entry.uncompressed_length,
- .signature = {},
// Metadata of the new lib file is its relative path
.metadata = {targetLibPath.c_str(), (IncFsSize)targetLibPath.size()},
+ .signature = {},
};
incfs::FileId libFileId = idFromMetadata(targetLibPath);
if (auto res = mIncFs->makeFile(ifs->control, targetLibPathAbsolute, 0755, libFileId,