summaryrefslogtreecommitdiff
path: root/spec/ruby/core/array
diff options
context:
space:
mode:
authorYusuke Endoh <mame@ruby-lang.org>2022-02-17 00:36:08 +0900
committerYusuke Endoh <mame@ruby-lang.org>2022-02-17 01:43:59 +0900
commit5f01fba001c478834d97d8abf88b0cb6e235d436 (patch)
tree9e5ba47d479dba3eeb200d3323dfc4c542c8e91c /spec/ruby/core/array
parentfabf60c93bd742e49d72d3d7728a3977e4555cae (diff)
yjit_codegen.c: Prevent a possible out-of-bound access
The code attempts to read `C_ARG_REGS[leaf_builtin->argc + 1]`, and the size of `C_ARG_REGS` is `NUM_C_ARG_REGS`. So, the guard condition must be `leaf_builtin->argc + 1 + 1 <= NUM_C_ARG_REGS`. This change fixes the off-by-one error. This issue was found by Coverity Scan.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/5561
Diffstat (limited to 'spec/ruby/core/array')
0 files changed, 0 insertions, 0 deletions