mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
Avoid NPE in ResponseCookie on null domain
See gh-24663
This commit is contained in:
@@ -245,7 +245,7 @@ public final class ResponseCookie extends HttpCookie {
|
||||
|
||||
@Nullable
|
||||
private String initDomain(String domain) {
|
||||
if (lenient) {
|
||||
if (lenient && !StringUtils.isEmpty(domain)) {
|
||||
String s = domain.trim();
|
||||
if (s.startsWith("\"") && s.endsWith("\"")) {
|
||||
if (s.substring(1, domain.length() - 1).trim().isEmpty()) {
|
||||
|
||||
Reference in New Issue
Block a user