diff options
author | Chih-hung Hsieh <chh@google.com> | 2016-07-27 22:53:01 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2016-07-27 22:53:01 +0200 |
commit | fc7cbe465f7eb175e33e1939753d435c33c361cf (patch) | |
tree | 2ac000f19a34400eff83318796e968040dfc4add /otafault/ota_io.cpp | |
parent | Import translations. DO NOT MERGE (diff) | |
parent | Merge \"Fix clang-tidy performance warnings.\" (diff) | |
download | android_bootable_recovery-fc7cbe465f7eb175e33e1939753d435c33c361cf.tar android_bootable_recovery-fc7cbe465f7eb175e33e1939753d435c33c361cf.tar.gz android_bootable_recovery-fc7cbe465f7eb175e33e1939753d435c33c361cf.tar.bz2 android_bootable_recovery-fc7cbe465f7eb175e33e1939753d435c33c361cf.tar.lz android_bootable_recovery-fc7cbe465f7eb175e33e1939753d435c33c361cf.tar.xz android_bootable_recovery-fc7cbe465f7eb175e33e1939753d435c33c361cf.tar.zst android_bootable_recovery-fc7cbe465f7eb175e33e1939753d435c33c361cf.zip |
Diffstat (limited to 'otafault/ota_io.cpp')
-rw-r--r-- | otafault/ota_io.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/otafault/ota_io.cpp b/otafault/ota_io.cpp index 94be8155a..2efd3004a 100644 --- a/otafault/ota_io.cpp +++ b/otafault/ota_io.cpp @@ -30,7 +30,7 @@ static std::string read_fault_file_name = ""; static std::string write_fault_file_name = ""; static std::string fsync_fault_file_name = ""; -static bool get_hit_file(const char* cached_path, std::string ffn) { +static bool get_hit_file(const char* cached_path, const std::string& ffn) { return should_hit_cache() ? !strncmp(cached_path, OTAIO_CACHE_FNAME, strlen(cached_path)) : !strncmp(cached_path, ffn.c_str(), strlen(cached_path)); |