diff options
Diffstat (limited to 'libs/binder/RpcSession.cpp')
-rw-r--r-- | libs/binder/RpcSession.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/binder/RpcSession.cpp b/libs/binder/RpcSession.cpp index 137411bc6b..53c9b78a7a 100644 --- a/libs/binder/RpcSession.cpp +++ b/libs/binder/RpcSession.cpp @@ -688,7 +688,8 @@ status_t RpcSession::addOutgoingConnection(std::unique_ptr<RpcTransport> rpcTran status_t status = OK; if (init) { - mRpcBinderState->sendConnectionInit(connection, sp<RpcSession>::fromExisting(this)); + status = + mRpcBinderState->sendConnectionInit(connection, sp<RpcSession>::fromExisting(this)); } { |