aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/tests/dso-data.c
diff options
context:
space:
mode:
authorJiri Olsa <jolsa@redhat.com>2012-11-10 01:46:52 +0100
committerArnaldo Carvalho de Melo <acme@redhat.com>2012-11-14 16:50:30 -0300
commitf95e0818cbd026a8f2277895c65fcc9cc5b28cf6 (patch)
tree1006699f08da33eb8bf797e5bbb50cd09f482962 /tools/perf/tests/dso-data.c
parentperf tests: Final cleanup for builtin-test move (diff)
downloadlinux-dev-f95e0818cbd026a8f2277895c65fcc9cc5b28cf6.tar.xz
linux-dev-f95e0818cbd026a8f2277895c65fcc9cc5b28cf6.zip
perf tests: Check for mkstemp return value in dso-data test
Adding check for mkstemp return error value in dso-data test. Reported-by: Arnaldo Carvalho de Melo <acme@redhat.com> Signed-off-by: Jiri Olsa <jolsa@redhat.com> Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Ingo Molnar <mingo@elte.hu> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Link: http://lkml.kernel.org/r/1352508412-16914-13-git-send-email-jolsa@redhat.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/tests/dso-data.c')
-rw-r--r--tools/perf/tests/dso-data.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/perf/tests/dso-data.c b/tools/perf/tests/dso-data.c
index b5198f52c24a..5eaffa2de9c5 100644
--- a/tools/perf/tests/dso-data.c
+++ b/tools/perf/tests/dso-data.c
@@ -26,6 +26,10 @@ static char *test_file(int size)
unsigned char *buf;
fd = mkstemp(templ);
+ if (fd < 0) {
+ perror("mkstemp failed");
+ return NULL;
+ }
buf = malloc(size);
if (!buf) {