summaryrefslogtreecommitdiffstats
path: root/usr.sbin/pmccontrol/pmccontrol.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/pmccontrol/pmccontrol.c')
-rw-r--r--usr.sbin/pmccontrol/pmccontrol.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.sbin/pmccontrol/pmccontrol.c b/usr.sbin/pmccontrol/pmccontrol.c
index b3585d0..c1e2acd 100644
--- a/usr.sbin/pmccontrol/pmccontrol.c
+++ b/usr.sbin/pmccontrol/pmccontrol.c
@@ -147,11 +147,9 @@ pmcc_do_enable_disable(struct pmcc_op_list *op_list)
if (npmc == 0)
errx(EX_CONFIG, "No PMCs found");
- if ((map = malloc(npmc * ncpu)) == NULL)
+ if ((map = calloc(npmc, ncpu)) == NULL)
err(EX_SOFTWARE, "Out of memory");
- (void) memset(map, PMCC_OP_IGNORE, npmc*ncpu);
-
error = 0;
STAILQ_FOREACH(np, op_list, op_next) {
OpenPOWER on IntegriCloud