Commit 870748fa authored by Arnaldo Carvalho de Melo's avatar Arnaldo Carvalho de Melo Committed by Namhyung Kim
Browse files

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: 531ee0fd ("perf test: Add hwmon "PMU" test")
Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
Link: https://lore.kernel.org/r/ZzzoJNNcJJVnPCCe@x1


Signed-off-by: default avatarNamhyung Kim <namhyung@kernel.org>
parent 5f2c8f4e
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -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);