remm        2004/02/29 14:51:56

  Modified:    http11/src/java/org/apache/coyote/http11
                        Http11Processor.java
  Log:
  - Make sure HexUtils is accessed before some output is made.
  - Ugly fix for bug 27299, until a better one is found. Doing a PA on write is not
    a good idea performance wise, though, so this seemed go enough to me
    (and similar to the access which occurs in parseHost, while having zero
    performance impact).
  
  Revision  Changes    Path
  1.98      +3 -0      
jakarta-tomcat-connectors/http11/src/java/org/apache/coyote/http11/Http11Processor.java
  
  Index: Http11Processor.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/http11/src/java/org/apache/coyote/http11/Http11Processor.java,v
  retrieving revision 1.97
  retrieving revision 1.98
  diff -u -r1.97 -r1.98
  --- Http11Processor.java      24 Feb 2004 08:50:56 -0000      1.97
  +++ Http11Processor.java      29 Feb 2004 22:51:56 -0000      1.98
  @@ -94,6 +94,9 @@
   
           initializeFilters();
   
  +        // Cause loading of HexUtils
  +        int foo = HexUtils.DEC[0];
  +
       }
   
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to