diff options
author | Tom Cherry <tomcherry@google.com> | 2019-01-31 00:59:53 +0100 |
---|---|---|
committer | Tom Cherry <tomcherry@google.com> | 2019-01-31 18:00:40 +0100 |
commit | 72a114a3e16c3dadfb10792b0b9d61d0fb421038 (patch) | |
tree | 6d6f3af85cfb41d60b688de9e0a9049b37b6f139 /uncrypt/uncrypt.cpp | |
parent | Merge "Fix potential size overflow in blockimg.cpp" (diff) | |
download | android_bootable_recovery-72a114a3e16c3dadfb10792b0b9d61d0fb421038.tar android_bootable_recovery-72a114a3e16c3dadfb10792b0b9d61d0fb421038.tar.gz android_bootable_recovery-72a114a3e16c3dadfb10792b0b9d61d0fb421038.tar.bz2 android_bootable_recovery-72a114a3e16c3dadfb10792b0b9d61d0fb421038.tar.lz android_bootable_recovery-72a114a3e16c3dadfb10792b0b9d61d0fb421038.tar.xz android_bootable_recovery-72a114a3e16c3dadfb10792b0b9d61d0fb421038.tar.zst android_bootable_recovery-72a114a3e16c3dadfb10792b0b9d61d0fb421038.zip |
Diffstat (limited to 'uncrypt/uncrypt.cpp')
-rw-r--r-- | uncrypt/uncrypt.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/uncrypt/uncrypt.cpp b/uncrypt/uncrypt.cpp index 75595ac2c..f1f4f69f0 100644 --- a/uncrypt/uncrypt.cpp +++ b/uncrypt/uncrypt.cpp @@ -119,6 +119,9 @@ #include "otautil/error_code.h" +using android::fs_mgr::Fstab; +using android::fs_mgr::ReadDefaultFstab; + static constexpr int WINDOW_SIZE = 5; static constexpr int FIBMAP_RETRY_LIMIT = 3; |