Author: markt Date: Thu Nov 26 13:35:27 2015 New Revision: 1716644 URL: http://svn.apache.org/viewvc?rev=1716644&view=rev Log: Filter out a false positive
Modified: tomcat/trunk/res/findbugs/filter-false-positives.xml Modified: tomcat/trunk/res/findbugs/filter-false-positives.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/res/findbugs/filter-false-positives.xml?rev=1716644&r1=1716643&r2=1716644&view=diff ============================================================================== --- tomcat/trunk/res/findbugs/filter-false-positives.xml (original) +++ tomcat/trunk/res/findbugs/filter-false-positives.xml Thu Nov 26 13:35:27 2015 @@ -111,6 +111,12 @@ <Bug code="IS" /> </Match> <Match> + <!-- The header value is safe --> + <Class name="org.apache.catalina.servlets.DefaultServlet" /> + <Method name="serveResource" /> + <Bug pattern="HRS_REQUEST_PARAMETER_TO_HTTP_HEADER" /> + </Match> + <Match> <!-- Non-constant strings are configuration settings rather than client supplied --> <Class name="org.apache.catalina.session.JDBCStore" /> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org