X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fwgtpkg-zip.c;h=ec214b1a65114be401eece420904cd46ba4c14c8;hb=7ecf0c1b7fb926f8e5c7a49a4959d59509599cc9;hp=aba05206e7626db307b161e324dedf990f1e937e;hpb=2c6fcae14552ab6e7addc82516617a135f86b5ca;p=src%2Fapp-framework-main.git diff --git a/src/wgtpkg-zip.c b/src/wgtpkg-zip.c index aba0520..ec214b1 100644 --- a/src/wgtpkg-zip.c +++ b/src/wgtpkg-zip.c @@ -1,5 +1,5 @@ /* - Copyright 2015 IoT.bzh + Copyright (C) 2015-2018 IoT.bzh author: José Bollo @@ -117,7 +117,7 @@ int zread(const char *zipfile, unsigned long long maxsize) struct zip_stat zstat; char buffer[32768]; ssize_t sizr, sizw; - size_t esize; + zip_uint64_t esize; /* open the zip file */ zip = zip_open(zipfile, ZIP_CHECKCONS, &err); @@ -199,7 +199,7 @@ int zread(const char *zipfile, unsigned long long maxsize) /* extract */ uz64 = zstat.size; while (uz64) { - sizr = zip_fread(zfile, buffer, sizeof buffer); + sizr = (ssize_t)zip_fread(zfile, buffer, sizeof buffer); if (sizr < 0) { ERROR("error while reading %s in %s", zstat.name, zipfile); goto errorzf; @@ -243,6 +243,7 @@ static int zwr(struct zws *zws, size_t offset) zip_int64_t z64; struct zip_source *zsrc; FILE *fp; + struct stat st; fd = openat(workdirfd, offset ? zws->name : ".", O_DIRECTORY|O_RDONLY); if (fd < 0) { @@ -275,6 +276,13 @@ static int zwr(struct zws *zws, size_t offset) ERROR("invalid name %s", zws->name); goto error; } + if (ent->d_type == DT_UNKNOWN) { + fstatat(fd, ent->d_name, &st, 0); + if (S_ISREG(st.st_mode)) + ent->d_type = DT_REG; + else if (S_ISDIR(st.st_mode)) + ent->d_type = DT_DIR; + } switch (ent->d_type) { case DT_DIR: z64 = zip_dir_add(zws->zip, zws->name, ZIP_FL_ENC_UTF_8);