nacho       01/09/23 15:11:46

  Modified:    src/native/mod_jk/apache1.3 mod_jk.c
  Log:
  CRLF  problems
  
  Revision  Changes    Path
  1.18      +4 -2      jakarta-tomcat/src/native/mod_jk/apache1.3/mod_jk.c
  
  Index: mod_jk.c
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/native/mod_jk/apache1.3/mod_jk.c,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- mod_jk.c  2001/09/17 23:43:59     1.17
  +++ mod_jk.c  2001/09/23 22:11:46     1.18
  @@ -922,13 +922,15 @@
                                         l, 
                                         &is_recoverable_error);
                   
  -                    if (s.content_read < s.content_length || 
  +                    if (s.content_read < s.content_length || 
  +
                        (s.is_chunked && ! s.no_more_chunks)) {
                           /*
                            * If the servlet engine didn't consume all of the
                            * request data, consume and discard all further
                            * characters left to read from client 
  -                         */
  +                         */
  +
   
                           char *buff = ap_palloc(r->pool, 2048);
                           if (buff != NULL) {
  
  
  

Reply via email to