From patchwork Thu Dec 28 21:51:58 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Steven Rostedt X-Patchwork-Id: 13506213 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 3555B10946 for ; Thu, 28 Dec 2023 21:53:45 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id DAADCC433C8; Thu, 28 Dec 2023 21:53:44 +0000 (UTC) Received: from rostedt by gandalf with local (Exim 4.97) (envelope-from ) id 1rIyKo-00000000EIl-3PyB; Thu, 28 Dec 2023 16:54:34 -0500 From: Steven Rostedt To: linux-trace-devel@vger.kernel.org Cc: "Steven Rostedt (Google)" Subject: [PATCH v2 03/22] libtracefs: Free "missed_followers" of instance Date: Thu, 28 Dec 2023 16:51:58 -0500 Message-ID: <20231228215433.54854-4-rostedt@goodmis.org> X-Mailer: git-send-email 2.42.0 In-Reply-To: <20231228215433.54854-1-rostedt@goodmis.org> References: <20231228215433.54854-1-rostedt@goodmis.org> Precedence: bulk X-Mailing-List: linux-trace-devel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 From: "Steven Rostedt (Google)" The missed_followers array was allocated but not freed in the clean up of the instance. Fixes: 44501430 ("libtracefs: Add tracefs_follow_missed_events() API") Signed-off-by: Steven Rostedt (Google) --- src/tracefs-instance.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tracefs-instance.c b/src/tracefs-instance.c index be1478ee7a92..c385a078ecec 100644 --- a/src/tracefs-instance.c +++ b/src/tracefs-instance.c @@ -124,6 +124,7 @@ __hidden void trace_put_instance(struct tracefs_instance *instance) free(instance->trace_dir); free(instance->followers); + free(instance->missed_followers); free(instance->name); pthread_mutex_destroy(&instance->lock); free(instance);