summaryrefslogtreecommitdiffstats
path: root/install.cpp
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2017-07-20 01:12:20 +0200
committerandroid-build-merger <android-build-merger@google.com>2017-07-20 01:12:20 +0200
commitf2a279adb556649d41cd7750e22be1cc6bce62e5 (patch)
treec742e5f7fe9b9cd3232aefdcb408b763f519e0d1 /install.cpp
parentMerge "Fix the missing char when showing recovery logs." am: 8155a8ba74 am: c61bbe158e (diff)
parentMerge "Fix the android-cloexec-* warnings in bootable/recovery" am: 94a8ea1797 (diff)
downloadandroid_bootable_recovery-f2a279adb556649d41cd7750e22be1cc6bce62e5.tar
android_bootable_recovery-f2a279adb556649d41cd7750e22be1cc6bce62e5.tar.gz
android_bootable_recovery-f2a279adb556649d41cd7750e22be1cc6bce62e5.tar.bz2
android_bootable_recovery-f2a279adb556649d41cd7750e22be1cc6bce62e5.tar.lz
android_bootable_recovery-f2a279adb556649d41cd7750e22be1cc6bce62e5.tar.xz
android_bootable_recovery-f2a279adb556649d41cd7750e22be1cc6bce62e5.tar.zst
android_bootable_recovery-f2a279adb556649d41cd7750e22be1cc6bce62e5.zip
Diffstat (limited to 'install.cpp')
-rw-r--r--install.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.cpp b/install.cpp
index 7ba8f0139..7fbf5c01f 100644
--- a/install.cpp
+++ b/install.cpp
@@ -265,7 +265,7 @@ int update_binary_command(const std::string& package, ZipArchiveHandle zip,
}
unlink(binary_path.c_str());
- int fd = creat(binary_path.c_str(), 0755);
+ int fd = open(binary_path.c_str(), O_CREAT | O_WRONLY | O_TRUNC | O_CLOEXEC, 0755);
if (fd == -1) {
PLOG(ERROR) << "Failed to create " << binary_path;
return INSTALL_ERROR;