From 03069529736d828ad73be2d0c67a6d6ac074775a Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Sat, 9 Mar 2024 10:52:57 +0100 Subject: Remove broken ecid check for KIS mode in iokit_open_with_ecid --- src/libirecovery.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/libirecovery.c b/src/libirecovery.c index e7105de..29bffd0 100644 --- a/src/libirecovery.c +++ b/src/libirecovery.c @@ -1612,7 +1612,6 @@ static irecv_error_t iokit_open_with_ecid(irecv_client_t* pclient, uint64_t ecid pids = wtf_pids; ecid = 0; } - if (ecid > 0) { ecidString = CFStringCreateWithFormat(kCFAllocatorDefault, NULL, CFSTR("%llX"), ecid); if (ecidString == NULL) { @@ -1644,12 +1643,6 @@ static irecv_error_t iokit_open_with_ecid(irecv_client_t* pclient, uint64_t ecid continue; } - if ((*pclient)->device_info.ecid != ecid) { - irecv_close(*pclient); - *pclient = NULL; - continue; - } - if (ecidString) CFRelease(ecidString); -- cgit v1.1-32-gdbae