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

Commit 7f72b30e authored by Roy Luo's avatar Roy Luo Committed by Automerger Merge Worker
Browse files

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

parents 867458fa be65e040
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);