In dlfilter-test, the function check_filter_desc calls get_filter_desc
which allocates desc and long_desc.
However, these variables are never deallocated.
This patch adds the missing frees.
Cc: Adrian Hunter <adrian.hunter@intel.com>
Fixes: 9f9c9a8de2d5e96c ("perf tests: Add dlfilter test")
Signed-off-by: Riccardo Mancini <redacted>
---
tools/perf/tests/dlfilter-test.c | 13 +++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)
@@ -239,15 +239,20 @@ static int get_dlfilters_path(char *buf, size_t sz)staticintcheck_filter_desc(structtest_data*td){-char*long_desc;-char*desc;+char*long_desc=NULL;+char*desc=NULL;+intret;if(get_filter_desc(td->dlfilters,"dlfilter-test-api-v0.so",&desc,&long_desc)&&long_desc&&!strcmp(long_desc,"Filter used by the 'dlfilter C API' perf test")&&desc&&!strcmp(desc,"dlfilter to test v0 C API"))-return0;+ret=0;+else+ret=-1;-return-1;+free(desc);+free(long_desc);+returnret;}staticintget_ip_addr(structtest_data*td)
From: Adrian Hunter <adrian.hunter@intel.com> Date: 2021-08-20 12:29:15
On 20/08/21 2:31 pm, Riccardo Mancini wrote:
In dlfilter-test, the function check_filter_desc calls get_filter_desc
which allocates desc and long_desc.
However, these variables are never deallocated.
This patch adds the missing frees.
Cc: Adrian Hunter <adrian.hunter@intel.com>
Fixes: 9f9c9a8de2d5e96c ("perf tests: Add dlfilter test")
Signed-off-by: Riccardo Mancini <redacted>
@@ -239,15 +239,20 @@ static int get_dlfilters_path(char *buf, size_t sz)staticintcheck_filter_desc(structtest_data*td){-char*long_desc;-char*desc;+char*long_desc=NULL;+char*desc=NULL;+intret;if(get_filter_desc(td->dlfilters,"dlfilter-test-api-v0.so",&desc,&long_desc)&&long_desc&&!strcmp(long_desc,"Filter used by the 'dlfilter C API' perf test")&&desc&&!strcmp(desc,"dlfilter to test v0 C API"))-return0;+ret=0;+else+ret=-1;-return-1;+free(desc);+free(long_desc);+returnret;}staticintget_ip_addr(structtest_data*td)
From: Arnaldo Carvalho de Melo <acme@kernel.org> Date: 2021-08-20 14:17:59
Em Fri, Aug 20, 2021 at 03:29:39PM +0300, Adrian Hunter escreveu:
On 20/08/21 2:31 pm, Riccardo Mancini wrote:
quoted
In dlfilter-test, the function check_filter_desc calls get_filter_desc
which allocates desc and long_desc.
However, these variables are never deallocated.
This patch adds the missing frees.
Cc: Adrian Hunter <adrian.hunter@intel.com>
Fixes: 9f9c9a8de2d5e96c ("perf tests: Add dlfilter test")
Signed-off-by: Riccardo Mancini <redacted>