bpo-33199: Initialize ma_version_tag in PyDict_Copy (GH-6341)
(cherry picked from commit d1c82c5cc7
)
Co-authored-by: INADA Naoki <methane@users.noreply.github.com>
This commit is contained in:
parent
306559e6ca
commit
9a90826c9b
|
@ -0,0 +1,2 @@
|
|||
Fix ``ma_version_tag`` in dict implementation is uninitialized when copying
|
||||
from key-sharing dict.
|
|
@ -2654,6 +2654,7 @@ PyDict_Copy(PyObject *o)
|
|||
split_copy->ma_values = newvalues;
|
||||
split_copy->ma_keys = mp->ma_keys;
|
||||
split_copy->ma_used = mp->ma_used;
|
||||
split_copy->ma_version_tag = DICT_NEXT_VERSION();
|
||||
DK_INCREF(mp->ma_keys);
|
||||
for (i = 0, n = size; i < n; i++) {
|
||||
PyObject *value = mp->ma_values[i];
|
||||
|
|
Loading…
Reference in New Issue