Message ID | 20231011223031.0aa32a57@gandalf.local.home (mailing list archive) |
---|---|
State | Accepted |
Commit | 420d67727d46894fbf9e0c42ddec659e0354c84d |
Headers | show |
Series | libtracefs: Free "followers" when freeing instance | expand |
diff --git a/src/tracefs-instance.c b/src/tracefs-instance.c index b3ed983db0e8..be1478ee7a92 100644 --- a/src/tracefs-instance.c +++ b/src/tracefs-instance.c @@ -123,6 +123,7 @@ __hidden void trace_put_instance(struct tracefs_instance *instance) close(instance->ftrace_marker_raw_fd); free(instance->trace_dir); + free(instance->followers); free(instance->name); pthread_mutex_destroy(&instance->lock); free(instance);
|From: "Steven Rostedt (Google)" <rostedt@goodmis.org> While running valgrind on an application that uses libtracefs, it revealed that "followers" from tracefs_follow_event() is not freed if called for an instance when the instance is freed. Free it! Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org> --- src/tracefs-instance.c | 1 + 1 file changed, 1 insertion(+)