Make that correctilier

This commit is contained in:
uNetworkingAB
2022-10-30 21:17:43 +01:00
committed by GitHub
parent 1bd6807a21
commit d76e2362d8
+1 -1
View File
@@ -239,7 +239,7 @@ private:
* Field values containing other CTL characters are also invalid. */
static inline void *tryConsumeFieldValue(char *p) {
for (; true; p += 8) {
if (hasLess(*(uint64_t *)p, 32) {
if (hasLess(*(uint64_t *)p, 32)) {
while (*(unsigned char *)p > 31) p++;
return (void *)p;
}