Loading adb/client/adb_client.cpp +5 −0 Original line number Diff line number Diff line Loading @@ -185,6 +185,11 @@ bool adb_kill_server() { return false; } // The server might send OKAY, so consume that. char buf[4]; ReadFdExactly(fd, buf, 4); // Now that no more data is expected, wait for socket orderly shutdown or error, indicating // server death. ReadOrderlyShutdown(fd); return true; } Loading Loading
adb/client/adb_client.cpp +5 −0 Original line number Diff line number Diff line Loading @@ -185,6 +185,11 @@ bool adb_kill_server() { return false; } // The server might send OKAY, so consume that. char buf[4]; ReadFdExactly(fd, buf, 4); // Now that no more data is expected, wait for socket orderly shutdown or error, indicating // server death. ReadOrderlyShutdown(fd); return true; } Loading