libbinder: remove RpcState deadlock debug logs
'dump' internally takes a lock, and there were two calls to it here
which would actually deadlock. Simply removing them to move fuzzer
forward.
Bug: 182938024
Test: fuzzer
Change-Id: Ic07193955f0794fd1fc11d7e89c65b469a43323c
diff --git a/libs/binder/RpcState.cpp b/libs/binder/RpcState.cpp
index 976351c..20fdbfe 100644
--- a/libs/binder/RpcState.cpp
+++ b/libs/binder/RpcState.cpp
@@ -511,7 +511,6 @@
auto it = mNodeForAddress.find(addr);
if (it == mNodeForAddress.end()) {
ALOGE("Unknown binder address %s.", addr.toString().c_str());
- dump();
replyStatus = BAD_VALUE;
} else {
target = it->second.binder.promote();
@@ -707,7 +706,6 @@
auto it = mNodeForAddress.find(addr);
if (it == mNodeForAddress.end()) {
ALOGE("Unknown binder address %s for dec strong.", addr.toString().c_str());
- dump();
return OK;
}