File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 33
44#define LLHTTP_VERSION_MAJOR 6
55#define LLHTTP_VERSION_MINOR 0
6- #define LLHTTP_VERSION_PATCH 1
6+ #define LLHTTP_VERSION_PATCH 2
77
88#ifndef LLHTTP_STRICT_MODE
99# define LLHTTP_STRICT_MODE 0
Original file line number Diff line number Diff line change @@ -1103,7 +1103,7 @@ static llparse_state_t llhttp__internal__run(
11031103 case s_n_llhttp__internal__n_consume_content_length :
11041104 s_n_llhttp__internal__n_consume_content_length : {
11051105 size_t avail ;
1106- size_t need ;
1106+ uint64_t need ;
11071107
11081108 avail = endp - p ;
11091109 need = state -> content_length ;
@@ -1458,7 +1458,7 @@ static llparse_state_t llhttp__internal__run(
14581458 case s_n_llhttp__internal__n_consume_content_length_1 :
14591459 s_n_llhttp__internal__n_consume_content_length_1 : {
14601460 size_t avail ;
1461- size_t need ;
1461+ uint64_t need ;
14621462
14631463 avail = endp - p ;
14641464 need = state -> content_length ;
@@ -8677,7 +8677,7 @@ static llparse_state_t llhttp__internal__run(
86778677 case s_n_llhttp__internal__n_consume_content_length :
86788678 s_n_llhttp__internal__n_consume_content_length : {
86798679 size_t avail ;
8680- size_t need ;
8680+ uint64_t need ;
86818681
86828682 avail = endp - p ;
86838683 need = state -> content_length ;
@@ -9025,7 +9025,7 @@ static llparse_state_t llhttp__internal__run(
90259025 case s_n_llhttp__internal__n_consume_content_length_1 :
90269026 s_n_llhttp__internal__n_consume_content_length_1 : {
90279027 size_t avail ;
9028- size_t need ;
9028+ uint64_t need ;
90299029
90309030 avail = endp - p ;
90319031 need = state -> content_length ;
You can’t perform that action at this time.
0 commit comments