commit | ed9e08a663a2b1511f43e387b2eb4975c1ef6847 | [log] [tgz] |
---|---|---|
author | David Anderson <dvander@google.com> | Wed Oct 23 23:15:06 2019 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Wed Oct 23 23:15:06 2019 +0000 |
tree | 5a52238281133330cdaf82c294f514a89fe05d5f | |
parent | 76aa49d01f63e626dcf574ea8e1fc0d926325b35 [diff] | |
parent | e17b95e6f7b1ed91efa27eebbc8b378aff778c08 [diff] |
Merge "avoid data overflow in low memory device"
diff --git a/fastboot/device/commands.h b/fastboot/device/commands.h index afd6d08..9b6e7b6 100644 --- a/fastboot/device/commands.h +++ b/fastboot/device/commands.h
@@ -19,7 +19,7 @@ #include <string> #include <vector> -constexpr unsigned int kMaxDownloadSizeDefault = 0x20000000; +constexpr unsigned int kMaxDownloadSizeDefault = 0x10000000; class FastbootDevice;