13 lines
544 B
Diff
13 lines
544 B
Diff
|
--- a/base/tools/aapt2/io/Util.h
|
||
|
+++ b/base/tools/aapt2/io/Util.h
|
||
|
@@ -131,8 +131,7 @@
|
||
|
template <typename T> bool ReadMessage(T *message) {
|
||
|
ZeroCopyInputAdaptor adapter(in_);
|
||
|
google::protobuf::io::CodedInputStream coded_stream(&adapter);
|
||
|
- coded_stream.SetTotalBytesLimit(std::numeric_limits<int32_t>::max(),
|
||
|
- coded_stream.BytesUntilTotalBytesLimit());
|
||
|
+ coded_stream.SetTotalBytesLimit(std::numeric_limits<int32_t>::max());
|
||
|
return message->ParseFromCodedStream(&coded_stream);
|
||
|
}
|
||
|
|