mirror of
https://github.com/python/cpython.git
synced 2025-12-08 06:10:17 +00:00
gh-117139: Fix an incorrect borrow in bytecodes.c (#122318)
`_PyDict_SetItem_Take2` steals both the key (i.e., `sub`) and the value.
This commit is contained in:
parent
013a092975
commit
674a50ef2f
3 changed files with 14 additions and 11 deletions
9
Python/executor_cases.c.h
generated
9
Python/executor_cases.c.h
generated
|
|
@ -1105,20 +1105,21 @@
|
|||
}
|
||||
|
||||
case _STORE_SUBSCR_DICT: {
|
||||
_PyStackRef sub_st;
|
||||
_PyStackRef sub;
|
||||
_PyStackRef dict_st;
|
||||
_PyStackRef value;
|
||||
sub_st = stack_pointer[-1];
|
||||
sub = stack_pointer[-1];
|
||||
dict_st = stack_pointer[-2];
|
||||
value = stack_pointer[-3];
|
||||
PyObject *sub = PyStackRef_AsPyObjectBorrow(sub_st);
|
||||
PyObject *dict = PyStackRef_AsPyObjectBorrow(dict_st);
|
||||
if (!PyDict_CheckExact(dict)) {
|
||||
UOP_STAT_INC(uopcode, miss);
|
||||
JUMP_TO_JUMP_TARGET();
|
||||
}
|
||||
STAT_INC(STORE_SUBSCR, hit);
|
||||
int err = _PyDict_SetItem_Take2((PyDictObject *)dict, sub, PyStackRef_AsPyObjectSteal(value));
|
||||
int err = _PyDict_SetItem_Take2((PyDictObject *)dict,
|
||||
PyStackRef_AsPyObjectSteal(sub),
|
||||
PyStackRef_AsPyObjectSteal(value));
|
||||
PyStackRef_CLOSE(dict_st);
|
||||
if (err) JUMP_TO_ERROR();
|
||||
stack_pointer += -3;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue