diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-07-21 13:12:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-21 13:12:13 (GMT) |
commit | 4b76404a511c287a73e32eef927f7cc4377d3055 (patch) | |
tree | 1dbe7031650911041b605fd625987705017fdf26 /Python/tracemalloc.c | |
parent | 66435241d89b1f667e225170d50bcb7b42f76abf (diff) | |
download | cpython-4b76404a511c287a73e32eef927f7cc4377d3055.zip cpython-4b76404a511c287a73e32eef927f7cc4377d3055.tar.gz cpython-4b76404a511c287a73e32eef927f7cc4377d3055.tar.bz2 |
[3.13] gh-121390: tracemalloc: Fix tracebacks memory leak (GH-121391) (#121392)
gh-121390: tracemalloc: Fix tracebacks memory leak (GH-121391)
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 db39bc42f90c151b298f97b780e62703adbf1221)
Co-authored-by: Josh Brobst <jbrobst@proton.me>
Diffstat (limited to 'Python/tracemalloc.c')
-rw-r--r-- | Python/tracemalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/tracemalloc.c b/Python/tracemalloc.c index fee7dd0..e58b60d 100644 --- a/Python/tracemalloc.c +++ b/Python/tracemalloc.c @@ -838,7 +838,7 @@ _PyTraceMalloc_Init(void) tracemalloc_tracebacks = hashtable_new(hashtable_hash_traceback, hashtable_compare_traceback, - NULL, raw_free); + raw_free, NULL); tracemalloc_traces = tracemalloc_create_traces_table(); tracemalloc_domains = tracemalloc_create_domains_table(); |