adb: use asocket\\'s close function when closing. am: f71c01493a

am: d179556680

Change-Id: I484051c028f89e292567485db49e2e20d26030be
This commit is contained in:
Josh Gao 2016-07-18 19:50:46 +00:00 committed by android-build-merger
commit e2a5846402
1 changed files with 1 additions and 3 deletions

View File

@ -43,8 +43,6 @@
using std::recursive_mutex;
#endif
static void local_socket_close(asocket* s);
static recursive_mutex& local_socket_list_lock = *new recursive_mutex();
static unsigned local_socket_next_id = 1;
@ -128,7 +126,7 @@ void close_all_sockets(atransport *t)
restart:
for (s = local_socket_list.next; s != &local_socket_list; s = s->next) {
if (s->transport == t || (s->peer && s->peer->transport == t)) {
local_socket_close(s);
s->close(s);
goto restart;
}
}