[PATCH v2 15/26] perf jit: Fix two thread leaks

From: Ian Rogers
Date: Thu Jun 08 2023 - 19:30:49 EST


As reported by leak sanitizer with reference count checking.

Signed-off-by: Ian Rogers <irogers@xxxxxxxxxx>
---
tools/perf/util/jitdump.c | 2 ++
1 file changed, 2 insertions(+)

diff --git a/tools/perf/util/jitdump.c b/tools/perf/util/jitdump.c
index 2380b41a4caa..6b2b96c16ccd 100644
--- a/tools/perf/util/jitdump.c
+++ b/tools/perf/util/jitdump.c
@@ -800,6 +800,7 @@ static void jit_add_pid(struct machine *machine, pid_t pid)
}

thread__set_priv(thread, (void *)true);
+ thread__put(thread);
}

static bool jit_has_pid(struct machine *machine, pid_t pid)
@@ -811,6 +812,7 @@ static bool jit_has_pid(struct machine *machine, pid_t pid)
return false;

priv = thread__priv(thread);
+ thread__put(thread);
return (bool)priv;
}

--
2.41.0.162.gfafddb0af9-goog