We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
https://github.com/mruby/mruby/pull/3553/files#diff-d13030dbdc98ec484fa8f0e9cbc31443R218 is accessing one element too much of the array, tests still pass when <= is changed to < in for (j = i; j <= a->len - len; ++j) { block but dunno if it still works as expected.
for (j = i; j <= a->len - len; ++j) {
These kind of bugs can be found quite good with
conf.cc.flags << '-fsanitize=address' conf.linker.flags << '-fsanitize=address'
added to build_config.rb
The text was updated successfully, but these errors were encountered:
5d00e85
No branches or pull requests
https://github.com/mruby/mruby/pull/3553/files#diff-d13030dbdc98ec484fa8f0e9cbc31443R218 is accessing one element too much of the array, tests still pass when <= is changed to < in
for (j = i; j <= a->len - len; ++j) {
block but dunno if it still works as expected.These kind of bugs can be found quite good with
added to build_config.rb
The text was updated successfully, but these errors were encountered: