marcsaeg    01/04/29 19:51:53

  Modified:    src/share/org/apache/jasper/servlet Tag: tomcat_32
                        JspServlet.java
  Log:
  Third times the charm.  Now it'll even compile.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.3.2.8   +2 -1      
jakarta-tomcat/src/share/org/apache/jasper/servlet/JspServlet.java
  
  Index: JspServlet.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat/src/share/org/apache/jasper/servlet/JspServlet.java,v
  retrieving revision 1.3.2.7
  retrieving revision 1.3.2.8
  diff -u -r1.3.2.7 -r1.3.2.8
  --- JspServlet.java   2001/04/27 20:51:47     1.3.2.7
  +++ JspServlet.java   2001/04/30 02:51:52     1.3.2.8
  @@ -593,13 +593,14 @@
                                                             req, res);
           boolean outDated = false; 
   
  +        Compiler compiler = null;
           synchronized(jsw){
               /*
                * Creating a compiler opens the associated .class file (if it exists)
                * and reads the actual class name.  If we allow a compiler to be
                * created while a compile is going on then bad things can happen.
                */
  -            Compiler compiler = ctxt.createCompiler();
  +            compiler = ctxt.createCompiler();
           }
   
           try {
  
  
  

Reply via email to