mirror of https://github.com/python/cpython
bpo-33199: Initialize ma_version_tag in PyDict_Copy (GH-6341)
This commit is contained in:
parent
a68f2f0578
commit
d1c82c5cc7
|
@ -0,0 +1,2 @@
|
|||
Fix ``ma_version_tag`` in dict implementation is uninitialized when copying
|
||||
from key-sharing dict.
|
|
@ -2551,6 +2551,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