mirror of
https://git.freebsd.org/ports.git
synced 2025-05-12 23:31:50 -04:00
Major update to 4.13.1 not 4.12 I've said it before and I'll say it again. This port should be a group effort but a cads porting team. I'd be happy to give up Maintainership as my only interest with cura was to get it into ports. PR: ports/255630 Reported by: unrelentingtech <greg@unrelenting.technology> Tested by: trombik1973@gmail.com
11 lines
577 B
C++
11 lines
577 B
C++
--- src/Socket_p.h.orig 2022-04-14 03:31:38 UTC
|
|
+++ src/Socket_p.h
|
|
@@ -548,7 +548,7 @@ namespace Arcus
|
|
|
|
google::protobuf::io::ArrayInputStream array(wire_message->data, wire_message->size);
|
|
google::protobuf::io::CodedInputStream stream(&array);
|
|
- stream.SetTotalBytesLimit(message_size_maximum, message_size_warning);
|
|
+ stream.SetTotalBytesLimit(message_size_maximum);
|
|
if(!message->ParseFromCodedStream(&stream))
|
|
{
|
|
error(ErrorCode::ParseFailedError, "Failed to parse message:" + std::string(wire_message->data));
|