File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 3
3
4
4
#define LLHTTP_VERSION_MAJOR 6
5
5
#define LLHTTP_VERSION_MINOR 0
6
- #define LLHTTP_VERSION_PATCH 1
6
+ #define LLHTTP_VERSION_PATCH 2
7
7
8
8
#ifndef LLHTTP_STRICT_MODE
9
9
# 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(
1103
1103
case s_n_llhttp__internal__n_consume_content_length :
1104
1104
s_n_llhttp__internal__n_consume_content_length : {
1105
1105
size_t avail ;
1106
- size_t need ;
1106
+ uint64_t need ;
1107
1107
1108
1108
avail = endp - p ;
1109
1109
need = state -> content_length ;
@@ -1458,7 +1458,7 @@ static llparse_state_t llhttp__internal__run(
1458
1458
case s_n_llhttp__internal__n_consume_content_length_1 :
1459
1459
s_n_llhttp__internal__n_consume_content_length_1 : {
1460
1460
size_t avail ;
1461
- size_t need ;
1461
+ uint64_t need ;
1462
1462
1463
1463
avail = endp - p ;
1464
1464
need = state -> content_length ;
@@ -8677,7 +8677,7 @@ static llparse_state_t llhttp__internal__run(
8677
8677
case s_n_llhttp__internal__n_consume_content_length :
8678
8678
s_n_llhttp__internal__n_consume_content_length : {
8679
8679
size_t avail ;
8680
- size_t need ;
8680
+ uint64_t need ;
8681
8681
8682
8682
avail = endp - p ;
8683
8683
need = state -> content_length ;
@@ -9025,7 +9025,7 @@ static llparse_state_t llhttp__internal__run(
9025
9025
case s_n_llhttp__internal__n_consume_content_length_1 :
9026
9026
s_n_llhttp__internal__n_consume_content_length_1 : {
9027
9027
size_t avail ;
9028
- size_t need ;
9028
+ uint64_t need ;
9029
9029
9030
9030
avail = endp - p ;
9031
9031
need = state -> content_length ;
You can’t perform that action at this time.
0 commit comments