Make that correct

This commit is contained in:
uNetworkingAB
2022-10-30 21:14:39 +01:00
committed by GitHub
parent fc51d2b4d6
commit 1bd6807a21
+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;
}