summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-10-02 20:06:25 +0200
committerandroid-build-merger <android-build-merger@google.com>2017-10-02 20:06:25 +0200
commit845d91ca1a69e6062d8772af2fba54e89bf51a40 (patch)
tree6f79350e6fb08221e70fec2cedbc89bfb36ae36c
parentMerge "otafault: Move to soong." am: 475794a9af am: 2812e5d16b (diff)
parentMerge "roots: Remove #include "common.h"." am: e8ee697364 (diff)
downloadandroid_bootable_recovery-845d91ca1a69e6062d8772af2fba54e89bf51a40.tar
android_bootable_recovery-845d91ca1a69e6062d8772af2fba54e89bf51a40.tar.gz
android_bootable_recovery-845d91ca1a69e6062d8772af2fba54e89bf51a40.tar.bz2
android_bootable_recovery-845d91ca1a69e6062d8772af2fba54e89bf51a40.tar.lz
android_bootable_recovery-845d91ca1a69e6062d8772af2fba54e89bf51a40.tar.xz
android_bootable_recovery-845d91ca1a69e6062d8772af2fba54e89bf51a40.tar.zst
android_bootable_recovery-845d91ca1a69e6062d8772af2fba54e89bf51a40.zip
-rw-r--r--roots.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/roots.cpp b/roots.cpp
index 7d7d1bdc7..02c1ecb7c 100644
--- a/roots.cpp
+++ b/roots.cpp
@@ -20,6 +20,7 @@
#include <fcntl.h>
#include <stdint.h>
#include <stdlib.h>
+#include <string.h>
#include <sys/mount.h>
#include <sys/stat.h>
#include <sys/types.h>
@@ -38,7 +39,6 @@
#include <ext4_utils/wipe.h>
#include <fs_mgr.h>
-#include "common.h"
#include "mounts.h"
static struct fstab* fstab = nullptr;
@@ -77,7 +77,7 @@ Volume* volume_for_path(const char* path) {
if (path == nullptr || path[0] == '\0') return nullptr;
std::string str(path);
while (true) {
- Volume* result = fs_mgr_get_entry_for_mount_point(fstab, str.c_str());
+ Volume* result = fs_mgr_get_entry_for_mount_point(fstab, str);
if (result != nullptr || str == "/") {
return result;
}