Skip to content

Commit 5abff69

Browse files
authored
gh-117657: Fix data race in compare_unicode_unicode_threadsafe (gh-131746)
We can't safely check the type of the found key until we incref it or if we know that it's immortal.
1 parent ac12de2 commit 5abff69

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Objects/dictobject.c

+3-1
Original file line numberDiff line numberDiff line change
@@ -1412,18 +1412,20 @@ compare_unicode_unicode_threadsafe(PyDictObject *mp, PyDictKeysObject *dk,
14121412
{
14131413
PyDictUnicodeEntry *ep = &((PyDictUnicodeEntry *)ep0)[ix];
14141414
PyObject *startkey = _Py_atomic_load_ptr_relaxed(&ep->me_key);
1415-
assert(startkey == NULL || PyUnicode_CheckExact(startkey));
14161415
if (startkey == key) {
1416+
assert(PyUnicode_CheckExact(startkey));
14171417
return 1;
14181418
}
14191419
if (startkey != NULL) {
14201420
if (_Py_IsImmortal(startkey)) {
1421+
assert(PyUnicode_CheckExact(startkey));
14211422
return unicode_get_hash(startkey) == hash && unicode_eq(startkey, key);
14221423
}
14231424
else {
14241425
if (!_Py_TryIncrefCompare(&ep->me_key, startkey)) {
14251426
return DKIX_KEY_CHANGED;
14261427
}
1428+
assert(PyUnicode_CheckExact(startkey));
14271429
if (unicode_get_hash(startkey) == hash && unicode_eq(startkey, key)) {
14281430
Py_DECREF(startkey);
14291431
return 1;

0 commit comments

Comments
 (0)