Loading libs/binder/RpcState.cpp +2 −3 Original line number Diff line number Diff line Loading @@ -1207,9 +1207,8 @@ status_t RpcState::processDecStrong(const sp<RpcSession::RpcConnection>& connect RpcMutexUniqueLock _l(mNodeMutex); auto it = mNodeForAddress.find(addr); if (it == mNodeForAddress.end()) { ALOGE("Unknown binder address %" PRIu64 " for dec strong. Terminating!", addr); (void)session->shutdownAndWait(false); return BAD_VALUE; ALOGE("Unknown binder address %" PRIu64 " for dec strong.", addr); return OK; } sp<IBinder> target = it->second.binder.promote(); Loading Loading
libs/binder/RpcState.cpp +2 −3 Original line number Diff line number Diff line Loading @@ -1207,9 +1207,8 @@ status_t RpcState::processDecStrong(const sp<RpcSession::RpcConnection>& connect RpcMutexUniqueLock _l(mNodeMutex); auto it = mNodeForAddress.find(addr); if (it == mNodeForAddress.end()) { ALOGE("Unknown binder address %" PRIu64 " for dec strong. Terminating!", addr); (void)session->shutdownAndWait(false); return BAD_VALUE; ALOGE("Unknown binder address %" PRIu64 " for dec strong.", addr); return OK; } sp<IBinder> target = it->second.binder.promote(); Loading