perf tests: Check for mkstemp return value in dso-data test
authorJiri Olsa <jolsa@redhat.com>
Sat, 10 Nov 2012 00:46:52 +0000 (01:46 +0100)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Wed, 14 Nov 2012 19:50:30 +0000 (16:50 -0300)
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>
tools/perf/tests/dso-data.c

index b5198f5..5eaffa2 100644 (file)
@@ -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) {