Author: markt Date: Mon Jun 17 09:24:11 2013 New Revision: 1493690 URL: http://svn.apache.org/r1493690 Log: FindBugs false positives
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=1493690&r1=1493689&r2=1493690&view=diff ============================================================================== --- tomcat/trunk/res/findbugs/filter-false-positives.xml (original) +++ tomcat/trunk/res/findbugs/filter-false-positives.xml Mon Jun 17 09:24:11 2013 @@ -79,6 +79,16 @@ <Bug code="SWL" /> </Match> <Match> + <!-- The code is adding HTTP request headers, not parameters and the + header parsing on input will have removed any CR or LF characters. --> + <Class name="org.apache.catalina.filters.CorsFilter" /> + <Or> + <Method name="handlePreflightCORS" /> + <Method name="handleSimpleCORS" /> + </Or> + <Bug pattern="HRS_REQUEST_PARAMETER_TO_HTTP_HEADER" /> + </Match> + <Match> <!-- shost will not be null in normal usage --> <Class name="org.apache.catalina.ha.backend.CollectedInfo" /> <Method name="init" /> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org