diff options
author | Yifan Hong <elsk@google.com> | 2019-01-14 21:56:57 +0100 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2019-01-14 21:56:57 +0100 |
commit | 7a0b65472b7ac8d6ef403c902301908d1fb603b3 (patch) | |
tree | b9c669a9b75190e8b4dd393810181315fe491298 /updater/blockimg.cpp | |
parent | Merge "Use dynamically linked f2fs executables." (diff) | |
parent | Create stash dir recursively. (diff) | |
download | android_bootable_recovery-7a0b65472b7ac8d6ef403c902301908d1fb603b3.tar android_bootable_recovery-7a0b65472b7ac8d6ef403c902301908d1fb603b3.tar.gz android_bootable_recovery-7a0b65472b7ac8d6ef403c902301908d1fb603b3.tar.bz2 android_bootable_recovery-7a0b65472b7ac8d6ef403c902301908d1fb603b3.tar.lz android_bootable_recovery-7a0b65472b7ac8d6ef403c902301908d1fb603b3.tar.xz android_bootable_recovery-7a0b65472b7ac8d6ef403c902301908d1fb603b3.tar.zst android_bootable_recovery-7a0b65472b7ac8d6ef403c902301908d1fb603b3.zip |
Diffstat (limited to '')
-rw-r--r-- | updater/blockimg.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/updater/blockimg.cpp b/updater/blockimg.cpp index 9d5b01734..e35d48368 100644 --- a/updater/blockimg.cpp +++ b/updater/blockimg.cpp @@ -53,6 +53,7 @@ #include <ziparchive/zip_archive.h> #include "edify/expr.h" +#include "otautil/dirutil.h" #include "otautil/error_code.h" #include "otautil/paths.h" #include "otautil/print_sha1.h" @@ -878,7 +879,7 @@ static int CreateStash(State* state, size_t maxblocks, const std::string& base) size_t max_stash_size = maxblocks * BLOCKSIZE; if (res == -1) { LOG(INFO) << "creating stash " << dirname; - res = mkdir(dirname.c_str(), STASH_DIRECTORY_MODE); + res = mkdir_recursively(dirname, STASH_DIRECTORY_MODE, false, nullptr); if (res != 0) { ErrorAbort(state, kStashCreationFailure, "mkdir \"%s\" failed: %s", dirname.c_str(), |