-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): bump openresty to 1.27.1.1
Signed-off-by: Aapo Talvensaari <[email protected]>
- Loading branch information
Showing
51 changed files
with
548 additions
and
3,133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...31117_01_patch_macro_luajit_version.patch → ...40815_01_patch_macro_luajit_version.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
.../LuaJIT-2.1-20231117_02_pass_cc_env.patch → .../LuaJIT-2.1-20240815_02_pass_cc_env.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 0 additions & 26 deletions
26
build/openresty/patches/lua-cjson-2.1.0.13_01-error-on-t_end.patch
This file was deleted.
Oops, something went wrong.
15 changes: 15 additions & 0 deletions
15
build/openresty/patches/lua-cjson-2.1.0.14_01-error-on-t_end.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
diff --git a/bundle/lua-cjson-2.1.0.14/lua_cjson.c b/bundle/lua-cjson-2.1.0.14/lua_cjson.c | ||
index bbd8eff..c39c425 100644 | ||
--- a/bundle/lua-cjson-2.1.0.14/lua_cjson.c | ||
+++ b/bundle/lua-cjson-2.1.0.14/lua_cjson.c | ||
@@ -1495,6 +1495,10 @@ static int json_decode(lua_State *l) | ||
if (token.type != T_END) | ||
json_throw_parse_error(l, &json, "the end", &token); | ||
|
||
+ /* Make sure T_END (\x00) doesn't occur at middle of input */ | ||
+ if (json.data + json_len > json.ptr) | ||
+ json_throw_parse_error(l, &json, "EOF", &token); | ||
+ | ||
strbuf_free(json.tmp); | ||
|
||
return 1; |
206 changes: 0 additions & 206 deletions
206
build/openresty/patches/lua-resty-core-0.1.28_01-dyn_upstream_keepalive.patch
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.