cshannon commented on code in PR #2167:
URL: https://github.com/apache/activemq/pull/2167#discussion_r3508020431
##########
activemq-amqp/src/main/java/org/apache/activemq/transport/amqp/AmqpFrameParser.java:
##########
@@ -86,6 +86,8 @@ private void validateFrameSize(int frameSize) throws
IOException {
if (frameSize > maxFrameSize) {
throw IOExceptionSupport.createFrameSizeException(frameSize,
maxFrameSize);
+ } else if (frameSize <= 0) {
Review Comment:
I updated it and also applied to the blocking tansport as well in
AmqpWireFormat
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information, visit: https://activemq.apache.org/contact