commit | 376f04e0474e798787048d04c17c0f0ecf5e3c09 | [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 | 5d9cdae3f33386bbf41df72fbad20e8b56bb2a63 [diff] | |
parent | ba117304abc783ae4312968c84952432f17bbcce [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;