aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/perf/builtin-record.c9
-rw-r--r--tools/perf/builtin-report.c5
2 files changed, 11 insertions, 3 deletions
diff --git a/tools/perf/builtin-record.c b/tools/perf/builtin-record.c
index e2cebc053bd7..d7ebbd757543 100644
--- a/tools/perf/builtin-record.c
+++ b/tools/perf/builtin-record.c
@@ -461,7 +461,8 @@ static void atexit_header(void)
461{ 461{
462 file_header.data_size += bytes_written; 462 file_header.data_size += bytes_written;
463 463
464 pwrite(output, &file_header, sizeof(file_header), 0); 464 if (pwrite(output, &file_header, sizeof(file_header), 0) == -1)
465 perror("failed to write on file headers");
465} 466}
466 467
467static int __cmd_record(int argc, const char **argv) 468static int __cmd_record(int argc, const char **argv)
@@ -500,7 +501,11 @@ static int __cmd_record(int argc, const char **argv)
500 } 501 }
501 502
502 if (!file_new) { 503 if (!file_new) {
503 read(output, &file_header, sizeof(file_header)); 504 if (read(output, &file_header, sizeof(file_header)) == -1) {
505 perror("failed to read file headers");
506 exit(-1);
507 }
508
504 lseek(output, file_header.data_size, SEEK_CUR); 509 lseek(output, file_header.data_size, SEEK_CUR);
505 } 510 }
506 511
diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c
index de1b97845e9e..5eb5566f0c95 100644
--- a/tools/perf/builtin-report.c
+++ b/tools/perf/builtin-report.c
@@ -1400,7 +1400,10 @@ static int __cmd_report(void)
1400 exit(0); 1400 exit(0);
1401 } 1401 }
1402 1402
1403 read(input, &file_header, sizeof(file_header)); 1403 if (read(input, &file_header, sizeof(file_header)) == -1) {
1404 perror("failed to read file headers");
1405 exit(-1);
1406 }
1404 1407
1405 if (sort__has_parent && 1408 if (sort__has_parent &&
1406 !(file_header.sample_type & PERF_SAMPLE_CALLCHAIN)) { 1409 !(file_header.sample_type & PERF_SAMPLE_CALLCHAIN)) {