diff options
author | Tao Bao <tbao@google.com> | 2017-10-02 22:48:50 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2017-10-02 22:48:50 +0200 |
commit | dd7a4b5264c6e332dd6b02071e966f53a4e20050 (patch) | |
tree | b4a0df58e109a141b859ff90a720d3deb2fc977b /roots.cpp | |
parent | Merge "Use -Werror in bootable/recovery" (diff) | |
parent | roots: Fix an issue with volume_for_path(). (diff) | |
download | android_bootable_recovery-dd7a4b5264c6e332dd6b02071e966f53a4e20050.tar android_bootable_recovery-dd7a4b5264c6e332dd6b02071e966f53a4e20050.tar.gz android_bootable_recovery-dd7a4b5264c6e332dd6b02071e966f53a4e20050.tar.bz2 android_bootable_recovery-dd7a4b5264c6e332dd6b02071e966f53a4e20050.tar.lz android_bootable_recovery-dd7a4b5264c6e332dd6b02071e966f53a4e20050.tar.xz android_bootable_recovery-dd7a4b5264c6e332dd6b02071e966f53a4e20050.tar.zst android_bootable_recovery-dd7a4b5264c6e332dd6b02071e966f53a4e20050.zip |
Diffstat (limited to 'roots.cpp')
-rw-r--r-- | roots.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -69,11 +69,15 @@ void load_volume_table() { printf("\n"); } +Volume* volume_for_mount_point(const std::string& mount_point) { + return fs_mgr_get_entry_for_mount_point(fstab, mount_point); +} + // Finds the volume specified by the given path. fs_mgr_get_entry_for_mount_point() does exact match // only, so it attempts the prefixes recursively (e.g. "/cache/recovery/last_log", // "/cache/recovery", "/cache", "/" for a given path of "/cache/recovery/last_log") and returns the // first match or nullptr. -Volume* volume_for_path(const char* path) { +static Volume* volume_for_path(const char* path) { if (path == nullptr || path[0] == '\0') return nullptr; std::string str(path); while (true) { |