Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pythongh-121390: tracemalloc: Fix tracebacks memory leak (pythonGH-12…
…1391) The tracemalloc_tracebacks hash table has traceback keys and NULL values, but its destructors do not reflect this -- key_destroy_func is NULL while value_destroy_func is raw_free. Swap these to free the traceback keys instead. (cherry picked from commit db39bc4) Co-authored-by: Josh Brobst <[email protected]>
- Loading branch information