gh-119799: Add missing _Py_IncRefTotal to _Py_NewRefWithLock (#119800)

The free-threaded refleak builds were reporting negative refcount deltas
in some tests because of a missing `_Py_NewRefWithLock`.
This commit is contained in:
Sam Gross 2024-05-31 14:18:24 -04:00 committed by GitHub
parent 9bc6045842
commit 879d43b705
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -497,6 +497,9 @@ _Py_NewRefWithLock(PyObject *op)
if (_Py_TryIncrefFast(op)) {
return op;
}
#ifdef Py_REF_DEBUG
_Py_IncRefTotal(_PyThreadState_GET());
#endif
_Py_INCREF_STAT_INC();
for (;;) {
Py_ssize_t shared = _Py_atomic_load_ssize_relaxed(&op->ob_ref_shared);