Skip to content

Commit c1d0cd2

Browse files
committed
Remove atomic load.
I turned this into a mess when trying to debug the other crash.
1 parent 3929ac7 commit c1d0cd2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Objects/dictobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4619,7 +4619,7 @@ dict_traverse(PyObject *op, visitproc visit, void *arg)
46194619

46204620
if (DK_IS_UNICODE(keys)) {
46214621
if (_PyDict_HasSplitTable(mp)) {
4622-
if (!FT_ATOMIC_LOAD_UINT8(mp->ma_values->embedded)) {
4622+
if (!mp->ma_values->embedded) {
46234623
for (i = 0; i < n; i++) {
46244624
Py_VISIT(mp->ma_values->values[i]);
46254625
}

0 commit comments

Comments
 (0)