aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/perf/builtin-record.c2
-rw-r--r--tools/perf/builtin-top.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/builtin-record.c b/tools/perf/builtin-record.c
index bb5b23db4239..60ecdd3dd26d 100644
--- a/tools/perf/builtin-record.c
+++ b/tools/perf/builtin-record.c
@@ -751,7 +751,7 @@ int cmd_record(int argc, const char **argv, const char *prefix __used)
751 for (i = 0; i < MAX_NR_CPUS; i++) { 751 for (i = 0; i < MAX_NR_CPUS; i++) {
752 for (j = 0; j < MAX_COUNTERS; j++) { 752 for (j = 0; j < MAX_COUNTERS; j++) {
753 fd[i][j] = malloc(sizeof(int)*thread_num); 753 fd[i][j] = malloc(sizeof(int)*thread_num);
754 mmap_array[i][j] = malloc( 754 mmap_array[i][j] = zalloc(
755 sizeof(struct mmap_data)*thread_num); 755 sizeof(struct mmap_data)*thread_num);
756 if (!fd[i][j] || !mmap_array[i][j]) 756 if (!fd[i][j] || !mmap_array[i][j])
757 return -ENOMEM; 757 return -ENOMEM;
diff --git a/tools/perf/builtin-top.c b/tools/perf/builtin-top.c
index 5f3ac9ff354d..4abdd9b646b3 100644
--- a/tools/perf/builtin-top.c
+++ b/tools/perf/builtin-top.c
@@ -1371,7 +1371,7 @@ int cmd_top(int argc, const char **argv, const char *prefix __used)
1371 for (i = 0; i < MAX_NR_CPUS; i++) { 1371 for (i = 0; i < MAX_NR_CPUS; i++) {
1372 for (j = 0; j < MAX_COUNTERS; j++) { 1372 for (j = 0; j < MAX_COUNTERS; j++) {
1373 fd[i][j] = malloc(sizeof(int)*thread_num); 1373 fd[i][j] = malloc(sizeof(int)*thread_num);
1374 mmap_array[i][j] = malloc( 1374 mmap_array[i][j] = zalloc(
1375 sizeof(struct mmap_data)*thread_num); 1375 sizeof(struct mmap_data)*thread_num);
1376 if (!fd[i][j] || !mmap_array[i][j]) 1376 if (!fd[i][j] || !mmap_array[i][j])
1377 return -ENOMEM; 1377 return -ENOMEM;