Patch "rtla: Fix double free" has been added to the 5.18-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    rtla: Fix double free

to the 5.18-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     rtla-fix-double-free.patch
and it can be found in the queue-5.18 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 064a5c9b3f5b4942a76e80b12b7a0cd2963f6aeb
Author: Andreas Schwab <schwab@xxxxxxx>
Date:   Mon Jul 25 17:12:18 2022 +0200

    rtla: Fix double free
    
    [ Upstream commit 4f753c3be52c1d930afc0fe3169baa605dbaf611 ]
    
    Avoid double free by making trace_instance_destroy indempotent.  When
    trace_instance_init fails, it calls trace_instance_destroy, but its only
    caller osnoise_destroy_tool calls it again.
    
    Link: https://lkml.kernel.org/r/mvmilnlkyzx.fsf_-_@xxxxxxx
    
    Fixes: 0605bf009f18 ("rtla: Add osnoise tool")
    Signed-off-by: Andreas Schwab <schwab@xxxxxxx>
    Acked-by: Daniel Bristot de Oliveira <bristot@xxxxxxxxxx>
    Signed-off-by: Steven Rostedt (Google) <rostedt@xxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/tools/tracing/rtla/src/trace.c b/tools/tracing/rtla/src/trace.c
index 5784c9f9e570..e1ba6d9f4265 100644
--- a/tools/tracing/rtla/src/trace.c
+++ b/tools/tracing/rtla/src/trace.c
@@ -134,13 +134,18 @@ void trace_instance_destroy(struct trace_instance *trace)
 	if (trace->inst) {
 		disable_tracer(trace->inst);
 		destroy_instance(trace->inst);
+		trace->inst = NULL;
 	}
 
-	if (trace->seq)
+	if (trace->seq) {
 		free(trace->seq);
+		trace->seq = NULL;
+	}
 
-	if (trace->tep)
+	if (trace->tep) {
 		tep_free(trace->tep);
+		trace->tep = NULL;
+	}
 }
 
 /*



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux