diff options
author | Martin Szulecki | 2014-10-02 20:49:05 +0200 |
---|---|---|
committer | Martin Szulecki | 2014-10-02 20:49:05 +0200 |
commit | e017c635102ca6783f5d3428c6568c6edb808eb5 (patch) | |
tree | f347421cb437b6277c5fe1c26009bdcfe5ee5edd | |
parent | ab04a35991dde200fa9bf5e7ddd458ea6f159b5e (diff) | |
download | ideviceinstaller-e017c635102ca6783f5d3428c6568c6edb808eb5.tar.gz ideviceinstaller-e017c635102ca6783f5d3428c6568c6edb808eb5.tar.bz2 |
Fix installation of IPA files which are missing app directory zip file entry
-rw-r--r-- | src/ideviceinstaller.c | 6 |
1 files changed, 0 insertions, 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; } |