Fixed invalid flow control in CacheControlHeaderParser

This commit is contained in:
Oleg Kalnichevski 2023-10-15 16:50:06 +02:00
parent 915b9b34d7
commit 6055776245
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ class CacheControlHeaderParser {
} else {
final String s = header.getValue();
if (s == null) {
return;
continue;
}
buffer = new CharArrayBuffer(s.length());
buffer.append(s);