summaryrefslogtreecommitdiffstats
path: root/data.cpp
diff options
context:
space:
mode:
authorbigbiff bigbiff <bigbiff@teamw.in>2019-03-23 23:33:17 +0100
committerDees Troy <dees_troy@teamw.in>2019-04-03 02:08:39 +0200
commite4bdb15a5f6b0894b46fd34ad7b1a3093d6a102c (patch)
tree2ea6d8f25a05aeadcc39eccf6c028c992fd7f8e0 /data.cpp
parentMerge "ADB Backup: Ignore creating backup folder for phones not decrypted. This allows you to continue without error. Also we should not set restore path for images in adb backup. Change-Id: Ia75a70377b8e1364fefc82ad41ccf74fa3b7a3c3" into android-9.0 (diff)
downloadandroid_bootable_recovery-e4bdb15a5f6b0894b46fd34ad7b1a3093d6a102c.tar
android_bootable_recovery-e4bdb15a5f6b0894b46fd34ad7b1a3093d6a102c.tar.gz
android_bootable_recovery-e4bdb15a5f6b0894b46fd34ad7b1a3093d6a102c.tar.bz2
android_bootable_recovery-e4bdb15a5f6b0894b46fd34ad7b1a3093d6a102c.tar.lz
android_bootable_recovery-e4bdb15a5f6b0894b46fd34ad7b1a3093d6a102c.tar.xz
android_bootable_recovery-e4bdb15a5f6b0894b46fd34ad7b1a3093d6a102c.tar.zst
android_bootable_recovery-e4bdb15a5f6b0894b46fd34ad7b1a3093d6a102c.zip
Diffstat (limited to 'data.cpp')
-rwxr-xr-xdata.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/data.cpp b/data.cpp
index cf9dd2476..92255357c 100755
--- a/data.cpp
+++ b/data.cpp
@@ -1043,6 +1043,11 @@ void DataManager::Output_Version(void)
char version[255];
std::string cacheDir = TWFunc::get_cache_dir();
+ if (cacheDir.empty()) {
+ LOGINFO("Unable to find cache directory\n");
+ return;
+ }
+
std::string recoveryCacheDir = cacheDir + "recovery/";
if (cacheDir == NON_AB_CACHE_DIR) {
@@ -1053,7 +1058,7 @@ void DataManager::Output_Version(void)
}
if (!TWFunc::Path_Exists(recoveryCacheDir)) {
LOGINFO("Recreating %s folder.\n", recoveryCacheDir.c_str());
- if (mkdir(recoveryCacheDir.c_str(), S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP) != 0) {
+ if (!TWFunc::Create_Dir_Recursive(recoveryCacheDir.c_str(), S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP, 0, 0)) {
LOGERR("DataManager::Output_Version -- Unable to make %s: %s\n", recoveryCacheDir.c_str(), strerror(errno));
return;
}