This is an automated email from the ASF dual-hosted git repository.
markt pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/9.0.x by this push:
new 0cd7fad07f Avoid null response
0cd7fad07f is described below
commit 0cd7fad07f448c335c5b5014ecdc5036f5af36ef
Author: Mark Thomas <[email protected]>
AuthorDate: Tue May 10 14:17:06 2022 +0100
Avoid null response
---
java/org/apache/catalina/filters/CsrfPreventionFilter.java | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/java/org/apache/catalina/filters/CsrfPreventionFilter.java
b/java/org/apache/catalina/filters/CsrfPreventionFilter.java
index 159d8ed318..4e179d1c18 100644
--- a/java/org/apache/catalina/filters/CsrfPreventionFilter.java
+++ b/java/org/apache/catalina/filters/CsrfPreventionFilter.java
@@ -191,11 +191,9 @@ public class CsrfPreventionFilter extends
CsrfPreventionFilterBase {
wResponse = new CsrfResponseWrapper(res,
nonceRequestParameterName, newNonce);
}
- } else {
- wResponse = response;
}
- chain.doFilter(request, wResponse);
+ chain.doFilter(request, wResponse == null ? response : wResponse);
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]