mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
[Bug #21357] Fix crash in Hash#merge with block
Prior to 49b306ecb9
the `optional_arg` passed from `rb_hash_update_block_i` to `tbl_update`
was a hash value (i.e. a VALUE). After that commit it changed to an
`update_call_args`.
If the block sets or changes the value, `tbl_update_modify` will set the
`arg.value` back to an actual value and we won't crash. But in the case
where the block returns the original value we end up calling
`RB_OBJ_WRITTEN` with the `update_call_args` which is not expected and
may crash.
`arg.value` appears to only be used to pass to `RB_OBJ_WRITTEN` (others
who need the `update_call_args` get it from `arg.arg`), so I don't think
it needs to be set to anything upfront. And `tbl_update_modify` will set
the `arg.value` in the cases we need the write barrier.
This commit is contained in:
parent
7154b4208b
commit
0564973196
Notes:
git
2025-05-22 03:26:07 +00:00
2 changed files with 7 additions and 2 deletions
4
hash.c
4
hash.c
|
@ -1723,14 +1723,14 @@ tbl_update(VALUE hash, VALUE key, tbl_update_func func, st_data_t optional_arg)
|
|||
.func = func,
|
||||
.hash = hash,
|
||||
.key = key,
|
||||
.value = (VALUE)optional_arg,
|
||||
.value = 0
|
||||
};
|
||||
|
||||
int ret = rb_hash_stlike_update(hash, key, tbl_update_modify, (st_data_t)&arg);
|
||||
|
||||
/* write barrier */
|
||||
RB_OBJ_WRITTEN(hash, Qundef, arg.key);
|
||||
RB_OBJ_WRITTEN(hash, Qundef, arg.value);
|
||||
if (arg.value) RB_OBJ_WRITTEN(hash, Qundef, arg.value);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue