summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMarkus Elfring <elfring@users.sourceforge.net>2015-06-25 11:12:32 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2015-06-25 14:15:49 -0400
commit4cc97614812e96c135e369f3d723fcda07d33437 (patch)
tree850a00a403fc82eb81ebb470df7fec1124b1e51f /tools
parent060664f3b9dff37860e48b5158e8429b2467e526 (diff)
perf header: Delete an unnecessary check before the calling free_event_desc()
The free_event_desc() function tests whether its argument is NULL and then returns immediately. Thus the test around the call is not needed. This issue was detected by using the Coccinelle software. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Cc: Julia Lawall <julia.lawall@lip6.fr> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: kernel-janitors@vger.kernel.org Link: http://lkml.kernel.org/r/558C2ABA.3000603@users.sourceforge.net Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/perf/util/header.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/perf/util/header.c b/tools/perf/util/header.c
index 21a77e7a171e..03ace57a800c 100644
--- a/tools/perf/util/header.c
+++ b/tools/perf/util/header.c
@@ -1063,8 +1063,7 @@ out:
1063 free(buf); 1063 free(buf);
1064 return events; 1064 return events;
1065error: 1065error:
1066 if (events) 1066 free_event_desc(events);
1067 free_event_desc(events);
1068 events = NULL; 1067 events = NULL;
1069 goto out; 1068 goto out;
1070} 1069}