summaryrefslogtreecommitdiffstats
path: root/minzip
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2016-05-08 20:12:51 +0200
committerandroid-build-merger <android-build-merger@google.com>2016-05-08 20:12:51 +0200
commitd654c35ab2c139843be120d64e69c35cd8954339 (patch)
tree9fd7680f9f80a0d3c826fd08aa4c1fc32ca6aeda /minzip
parentMerge "applypatch: Use bsdiff from external/bsdiff." am: 704cac2f99 am: 7caebae682 am: 22431741ce (diff)
parentMerge "updater, minzip: Remove unnecessary O_SYNC flags." am: c7d7eb2225 am: d03ee52eb7 (diff)
downloadandroid_bootable_recovery-d654c35ab2c139843be120d64e69c35cd8954339.tar
android_bootable_recovery-d654c35ab2c139843be120d64e69c35cd8954339.tar.gz
android_bootable_recovery-d654c35ab2c139843be120d64e69c35cd8954339.tar.bz2
android_bootable_recovery-d654c35ab2c139843be120d64e69c35cd8954339.tar.lz
android_bootable_recovery-d654c35ab2c139843be120d64e69c35cd8954339.tar.xz
android_bootable_recovery-d654c35ab2c139843be120d64e69c35cd8954339.tar.zst
android_bootable_recovery-d654c35ab2c139843be120d64e69c35cd8954339.zip
Diffstat (limited to 'minzip')
-rw-r--r--minzip/Zip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/minzip/Zip.c b/minzip/Zip.c
index 9f550f8b4..d557daa7f 100644
--- a/minzip/Zip.c
+++ b/minzip/Zip.c
@@ -968,7 +968,7 @@ bool mzExtractRecursive(const ZipArchive *pArchive,
setfscreatecon(secontext);
}
- int fd = open(targetFile, O_CREAT|O_WRONLY|O_TRUNC|O_SYNC,
+ int fd = open(targetFile, O_CREAT|O_WRONLY|O_TRUNC,
UNZIP_FILEMODE);
if (secontext) {