perf tests hwmon_pmu: Remove double evlist__delete()

In the error path when failing to parse events the evlist is being
deleted twice, keep the one after the out label.

Fixes: 531ee0fd48 ("perf test: Add hwmon "PMU" test")
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Link: https://lore.kernel.org/r/ZzzoJNNcJJVnPCCe@x1
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
This commit is contained in:
Arnaldo Carvalho de Melo 2024-11-19 16:34:31 -03:00 committed by Namhyung Kim
parent 5f2c8f4e10
commit 870748fa1f

View File

@ -155,8 +155,6 @@ static int do_test(size_t i, bool with_pmu, bool with_alias)
parse_events_error__init(&err);
ret = parse_events(evlist, str, &err);
if (ret) {
evlist__delete(evlist);
pr_debug("FAILED %s:%d failed to parse event '%s', err %d\n",
__FILE__, __LINE__, str, ret);
parse_events_error__print(&err, str);