forked from openresty/lua-cjson
-
Notifications
You must be signed in to change notification settings - Fork 5
Add CI for improved QOL #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
magicaldave
wants to merge
60
commits into
TES3MP:master
Choose a base branch
from
DreamWeave-MP:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains hidden or 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
Thanks @spacewander for optimization and documentation.
* update luarocks action * apt-get update * run tests on pull request as well
…y 31 bits and uninitialized variable. (openresty#76) [dtoa.c:2453] -> [dtoa.c:2454]: (warning) Shifting signed 32-bit value by 31 bits is undefined behaviour. See condition at line 2453. [dtoa.c:2846]: (error) Uninitialized variable: bb [dtoa.c:2847]: (error) Uninitialized variable: bd [dtoa.c:2848]: (error) Uninitialized variable: bs [dtoa.c:2850]: (error) Uninitialized variable: delta
…re light userdata address with masked address (openresty#82) Since we used `json_lightudata_mask` when creating lightuserdata, same mask should be applied when comparing the return of `touserdata` Fixes openresty#81.
Co-authored-by: Jesper Lundgren <[email protected]>
Co-authored-by: Jesper Lundgren <[email protected]>
) * Fix integer overflows due to using wrong integer size. * Add assertions / panic when overflow still happens. Co-authored-by: Oran Agra <[email protected]> Co-authored-by: Yossi Gottlieb <[email protected]>
* Feat(CI): Add automated builds
* Fix(CI): Add gcc builds for windows environments
This reverts commit bffdffe.
Revert "Test(CI): Make phoenix build it"
Co-Authored-By: Hisham Muhammad <[email protected]> Co-authored-by: Mark Pulford <[email protected]> Co-authored-by: ichenq <[email protected]> Co-authored-by: Cloud Wu <[email protected]> Co-authored-by: caijietao <[email protected]> Co-authored-by: actboy168 <[email protected]> Co-authored-by: wudeng <[email protected]> Co-authored-by: caiyiheng <[email protected]>
The kyne.com.au server seems to have moved to kyne.au
…openresty#116) json_next_number_token stores the `long long` return value from `stroll` in a `lua_Integer` (which is typically a typedef for `ptrdiff_t`). On 32-bit platforms, this ends up storing an 8-byte number into a 4-byte variable, truncating the value. Instead, store the converted value in a temporary `long long` variable so we can detect the scenario and decode into a `lua_Number`. Signed-off-by: James McCoy <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.