You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 6, 2022. It is now read-only.
http_parser.c: In function 'http_parser_execute':
http_parser.c:35:24: error: comparison between signed and unsigned integer expressions [-Werror=sign-compare]
# define MIN(a,b) ((a) < (b) ? (a) : (b))
^
http_parser.c:1500:41: note: in expansion of macro 'MIN'
const char* limit = p + MIN(data + len - p, max_header_size);
^~~
http_parser.c:35:36: error: signed and unsigned type in conditional expression [-Werror=sign-compare]
# define MIN(a,b) ((a) < (b) ? (a) : (b))
^
http_parser.c:1500:41: note: in expansion of macro 'MIN'
const char* limit = p + MIN(data + len - p, max_header_size);
^~~
cc1: all warnings being treated as errors