diff options
author | Michael Runge <mrunge@google.com> | 2014-10-29 03:49:57 +0100 |
---|---|---|
committer | The Android Automerger <android-build@google.com> | 2014-10-29 21:29:40 +0100 |
commit | a6c142f2a579ea5e7cdfbc88e6a061c55029265a (patch) | |
tree | 8b0544483b3827351f406c5e987e2bf2641d9c68 /minzip | |
parent | Log mount/unmount errors to UI (diff) | |
download | android_bootable_recovery-a6c142f2a579ea5e7cdfbc88e6a061c55029265a.tar android_bootable_recovery-a6c142f2a579ea5e7cdfbc88e6a061c55029265a.tar.gz android_bootable_recovery-a6c142f2a579ea5e7cdfbc88e6a061c55029265a.tar.bz2 android_bootable_recovery-a6c142f2a579ea5e7cdfbc88e6a061c55029265a.tar.lz android_bootable_recovery-a6c142f2a579ea5e7cdfbc88e6a061c55029265a.tar.xz android_bootable_recovery-a6c142f2a579ea5e7cdfbc88e6a061c55029265a.tar.zst android_bootable_recovery-a6c142f2a579ea5e7cdfbc88e6a061c55029265a.zip |
Diffstat (limited to 'minzip')
-rw-r--r-- | minzip/Zip.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/minzip/Zip.c b/minzip/Zip.c index 5070104d3..70aff00cd 100644 --- a/minzip/Zip.c +++ b/minzip/Zip.c @@ -1067,7 +1067,8 @@ bool mzExtractRecursive(const ZipArchive *pArchive, setfscreatecon(secontext); } - int fd = creat(targetFile, UNZIP_FILEMODE); + int fd = open(targetFile, O_CREAT|O_WRONLY|O_TRUNC|O_SYNC + , UNZIP_FILEMODE); if (secontext) { freecon(secontext); @@ -1082,7 +1083,12 @@ bool mzExtractRecursive(const ZipArchive *pArchive, } bool ok = mzExtractZipEntryToFile(pArchive, pEntry, fd); - close(fd); + if (ok) { + ok = (fsync(fd) == 0); + } + if (close(fd) != 0) { + ok = false; + } if (!ok) { LOGE("Error extracting \"%s\"\n", targetFile); ok = false; |