Incorect handling of message size in ByteArrayOutputStream::write
-----------------------------------------------------------------

                 Key: AMQ-823
                 URL: https://issues.apache.org/activemq/browse/AMQ-823
             Project: ActiveMQ
          Issue Type: Bug
          Components: CMS
    Affects Versions: incubation
         Environment: RHEL 4/32bit 
            Reporter: Radek Sedmak


when you are sending message via openwire protocol, 
ByteArrayOutputStream::write is called in certain moment ...
when message size is greater then defaul CHUNK space is reallocated and there 
is "check for EOF offset".

  
   if( offset > bodySize )
            expandBody() ;

 but should be there 

  if ( offset >= bodySize ) 
            expandBody();


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
https://issues.apache.org/activemq/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to