From e017c635102ca6783f5d3428c6568c6edb808eb5 Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Thu, 2 Oct 2014 20:49:05 +0200 Subject: Fix installation of IPA files which are missing app directory zip file entry --- src/ideviceinstaller.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/ideviceinstaller.c b/src/ideviceinstaller.c index 3bc7e74..f691556 100644 --- a/src/ideviceinstaller.c +++ b/src/ideviceinstaller.c @@ -241,12 +241,6 @@ static int zip_get_app_directory(struct zip* zf, char** path) } } while(i < c); - /* check if the path actually exists */ - int zindex = zip_name_locate(zf, *path, 0); - if (zindex < 0) { - return -1; - } - return 0; } -- cgit v1.1-32-gdbae