mirror of
https://github.com/python/cpython.git
synced 2025-07-23 11:15:24 +00:00
[3.13] gh-126076: Account for relocated objects in tracemalloc (GH-126077) (#127823)
(cherry picked from commit 30aeb00d36
)
This commit is contained in:
parent
78dfc28ff3
commit
eb692d945e
7 changed files with 18 additions and 25 deletions
|
@ -3171,6 +3171,7 @@ _PyBytes_Resize(PyObject **pv, Py_ssize_t newsize)
|
|||
#ifdef Py_TRACE_REFS
|
||||
_Py_ForgetReference(v);
|
||||
#endif
|
||||
_PyReftracerTrack(v, PyRefTracer_DESTROY);
|
||||
*pv = (PyObject *)
|
||||
PyObject_Realloc(v, PyBytesObject_SIZE + newsize);
|
||||
if (*pv == NULL) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue