mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-30 07:09:05 +08:00
6a398a2b9b
* [OpenCV3] fix compatibility with latest protobuf * [OpenCV3] fix references
12 lines
490 B
Diff
12 lines
490 B
Diff
--- a/modules/dnn/src/caffe/caffe_io.cpp
|
|
+++ b/modules/dnn/src/caffe/caffe_io.cpp
|
|
@@ -1111,7 +1111,7 @@ static const int kProtoReadBytesLimit = INT_MAX; // Max size of 2 GB minus 1 by
|
|
|
|
bool ReadProtoFromBinary(ZeroCopyInputStream* input, Message *proto) {
|
|
CodedInputStream coded_input(input);
|
|
- coded_input.SetTotalBytesLimit(kProtoReadBytesLimit, 536870912);
|
|
+ coded_input.SetTotalBytesLimit(kProtoReadBytesLimit);
|
|
|
|
return proto->ParseFromCodedStream(&coded_input);
|
|
}
|