https://issues.apache.org/bugzilla/show_bug.cgi?id=45666

           Summary: JspContextWrapper contains infinite loop in
                    include(String relativeUrlPath, boolean flush)
           Product: Tomcat 6
           Version: unspecified
          Platform: PC
        OS/Version: Windows XP
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Jasper
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


public void include(String relativeUrlPath, boolean flush)
                        throws ServletException, IOException {
                include(relativeUrlPath, false); // XXX
        }

just calls itself it seems. Perhaps this should be (just a guess):

public void include(String relativeUrlPath, boolean flush)
                        throws ServletException, IOException {
                invokingJspCtxt.include(relativeUrlPath, false); // XXX
        }

This came up for me when I had a .tag file that had an include in it. 

I was using Tomcat 5.5 but looking at the source of JspContextWrapper.java it
looks like this issue is in 5.5 as well as 6 (and the svn trunk).


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

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

Reply via email to