You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by hg...@locus.apache.org on 2000/11/15 12:37:25 UTC

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/modules/server Ajp13.java

hgomez      00/11/15 03:37:25

  Modified:    src/share/org/apache/tomcat/modules/server Ajp13.java
  Log:
  Submitted by: hgomez@slib.fr
  Fix ajp13 bug when posting more than 8K
  
  Revision  Changes    Path
  1.4       +1 -1      jakarta-tomcat/src/share/org/apache/tomcat/modules/server/Ajp13.java
  
  Index: Ajp13.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/share/org/apache/tomcat/modules/server/Ajp13.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Ajp13.java	2000/11/02 21:44:47	1.3
  +++ Ajp13.java	2000/11/15 11:37:25	1.4
  @@ -301,7 +301,7 @@
       
       public int doRead() throws IOException 
       {
  -        if(pos > blen) {
  +        if(pos >= blen) {
               refeelReadBuffer();
           }
           return bodyBuff[pos++];