On Wed, 15 Jan 2020 15:05:15 -0500 Marcelo Diop-Gonzalez <marcgonzalez@xxxxxxxxxx> wrote: > This fixes an unlikely but possible leak Applied, thanks Marcelo! -- Steve > > Signed-off-by: Marcelo Diop-Gonzalez <marcgonzalez@xxxxxxxxxx> > --- > lib/trace-cmd/trace-input.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/lib/trace-cmd/trace-input.c b/lib/trace-cmd/trace-input.c > index ac30a60..68da3a7 100644 > --- a/lib/trace-cmd/trace-input.c > +++ b/lib/trace-cmd/trace-input.c > @@ -1746,7 +1746,7 @@ tracecmd_read_page_record(struct tep_handle *pevent, void *page, int size, > > record = malloc(sizeof(*record)); > if (!record) > - return NULL; > + goto out_free; > memset(record, 0, sizeof(*record)); > > record->ts = ts;
![]() |