Merge "adb: don't error in handle_host_request if we can't acquire a transport." into pi-dev
diff --git a/adb/adb.cpp b/adb/adb.cpp
index 70e083b..c791c7b 100644
--- a/adb/adb.cpp
+++ b/adb/adb.cpp
@@ -1222,7 +1222,7 @@
     std::string error;
     atransport* t = acquire_one_transport(type, serial, transport_id, nullptr, &error);
     if (!t) {
-        return SendFail(reply_fd, error);
+        return -1;
     }
 
     int ret = handle_forward_request(service, t, reply_fd);