Merge "adb: optimize socket-list-walking code"

This commit is contained in:
Jean-Baptiste Queru 2010-06-15 09:28:26 -07:00 committed by Android Code Review
commit 7b67993a9e
1 changed files with 5 additions and 2 deletions

View File

@ -65,8 +65,11 @@ asocket *find_local_socket(unsigned id)
asocket *result = NULL;
adb_mutex_lock(&socket_list_lock);
for(s = local_socket_list.next; s != &local_socket_list && !result; s = s->next) {
if(s->id == id) result = s;
for (s = local_socket_list.next; s != &local_socket_list; s = s->next) {
if (s->id == id) {
result = s;
break;
}
}
adb_mutex_unlock(&socket_list_lock);