summaryrefslogtreecommitdiffstats
path: root/src/libirecovery.c
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2019-09-26 04:03:21 +0200
committerGravatar Nikias Bassen2019-09-26 04:03:21 +0200
commite98d13746fc6c007319e94849883d8ab6feabfb6 (patch)
tree4b332702173c2a87d4ef4354461a3adfd1c18178 /src/libirecovery.c
parent7aa0c6510eb8a639deef921ba397d9385cb44c40 (diff)
downloadlibirecovery-e98d13746fc6c007319e94849883d8ab6feabfb6.tar.gz
libirecovery-e98d13746fc6c007319e94849883d8ab6feabfb6.tar.bz2
Fix crash when calling CFRunLoopStop without the runloop being set
Diffstat (limited to 'src/libirecovery.c')
-rw-r--r--src/libirecovery.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libirecovery.c b/src/libirecovery.c
index 9d5911d..2ebe89c 100644
--- a/src/libirecovery.c
+++ b/src/libirecovery.c
@@ -2269,7 +2269,9 @@ IRECV_API irecv_error_t irecv_device_event_unsubscribe(irecv_device_event_contex
2269 2269
2270 if (num == 0) { 2270 if (num == 0) {
2271#ifdef HAVE_IOKIT 2271#ifdef HAVE_IOKIT
2272 CFRunLoopStop(iokit_runloop); 2272 if (iokit_runloop) {
2273 CFRunLoopStop(iokit_runloop);
2274 }
2273#endif 2275#endif
2274 thread_join(th_event_handler); 2276 thread_join(th_event_handler);
2275 thread_free(th_event_handler); 2277 thread_free(th_event_handler);