Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit be65e040 authored by Roy Luo's avatar Roy Luo Committed by Gerrit Code Review
Browse files

Merge "fastboot: remove retries on invalid IO iterator in OSX"

parents 684a66c8 d1d5f5ab
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
@@ -436,12 +436,7 @@ static int init_usb(ifc_match_func callback, std::unique_ptr<usb_handle>* handle

    for (;;) {
        if (! IOIteratorIsValid(iterator)) {
            /*
             * Apple documentation advises resetting the iterator if
             * it should become invalid during iteration.
             */
            IOIteratorReset(iterator);
            continue;
            break;
        }

        io_service_t device = IOIteratorNext(iterator);