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

Commit 9f73f7bf authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 11597038 from 8127c23d to 24Q3-release

Change-Id: I23f405a1c9ef1a69b24f963ef49ad8c323b2a997
parents 4d5c21d5 8127c23d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
set noparent

gavincorkery@google.com
ronish@google.com
nandana@google.com
jsharkey@android.com
+1 −1
Original line number Diff line number Diff line
set noparent

gavincorkery@google.com
ronish@google.com
nandana@google.com
jsharkey@android.com
+1 −1
Original line number Diff line number Diff line
set noparent

gavincorkery@google.com
ronish@google.com
nandana@google.com
jsharkey@android.com
smoreland@google.com
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
set noparent

gavincorkery@google.com
ronish@google.com
nandana@google.com
jsharkey@android.com

+4 −3
Original line number Diff line number Diff line
@@ -731,16 +731,17 @@ Status ListCommand::fetchBinderizedEntry(const sp<IServiceManager> &manager,
                                  [hashChain](const auto& ret) { *hashChain = std::move(ret); });
        if (!hashRet.isOk()) {
            handleError(TRANSACTION_ERROR, "getHashChain failed: " + hashRet.description());
            break; // skip getHashChain
        }
        if (static_cast<size_t>(hashIndex) >= hashChain->size()) {
            handleError(BAD_IMPL,
                        "interfaceChain indicates position " + std::to_string(hashIndex) +
                                " but getHashChain returns " + std::to_string(hashChain->size()) +
                                " hashes");
        } else {
            break; // skip getHashChain
        }
        auto&& hashArray = (*hashChain)[hashIndex];
        entry->hash = android::base::HexString(hashArray.data(), hashArray.size());
        }
    } while (0);
    if (status == OK) {
        entry->serviceStatus = ServiceStatus::ALIVE;
Loading