commit | a7d6d7bcc3c84947e4f89d126f1df68ec1113ede | [log] [tgz] |
---|---|---|
author | David Anderson <dvander@google.com> | Wed Oct 23 16:22:53 2019 -0700 |
committer | android-build-merger <android-build-merger@google.com> | Wed Oct 23 16:22:53 2019 -0700 |
tree | ede80d416ca9a3a6117bee8689e821c1c383ea9d | |
parent | 97bda3eb19d8a636d9eed7a875417cd9af101f56 [diff] | |
parent | 376f04e0474e798787048d04c17c0f0ecf5e3c09 [diff] |
Merge "avoid data overflow in low memory device" am: 376f04e047 Change-Id: I173dbb78fc7e03cf6f8cc09d285a7815434d6ce2
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;