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

Commit 155d0c0e authored by Yifan Hong's avatar Yifan Hong Committed by Automerger Merge Worker
Browse files

Merge "RpcState: fix check." am: 3ff57c4a am: 6ee486a3

Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/1747316

Change-Id: I196337f5a5af2e47d8570d564e4d328dfb0a16ac
parents 9f11bfbe 6ee486a3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -483,7 +483,7 @@ static void cleanup_reply_data(Parcel* p, const uint8_t* data, size_t dataSize,
    delete[] const_cast<uint8_t*>(data - offsetof(RpcWireReply, data));
    (void)dataSize;
    LOG_ALWAYS_FATAL_IF(objects != nullptr);
    LOG_ALWAYS_FATAL_IF(objectsCount, 0);
    LOG_ALWAYS_FATAL_IF(objectsCount != 0, "%zu objects remaining", objectsCount);
}

status_t RpcState::waitForReply(const sp<RpcSession::RpcConnection>& connection,