diff options
author | Gilles Chehade <gilles@cvs.openbsd.org> | 2014-04-22 13:57:59 +0000 |
---|---|---|
committer | Gilles Chehade <gilles@cvs.openbsd.org> | 2014-04-22 13:57:59 +0000 |
commit | 55f02b6a0fadaa9dbf3b35b9bd0de5a9c6abf928 (patch) | |
tree | f9caacd2c0c8dc0f18b38ad19e3e38d1ad99b4c0 /usr.sbin/smtpd | |
parent | 01b268e8239d05c2d856186251750cf5c7175e3c (diff) |
malloc -> calloc
Diffstat (limited to 'usr.sbin/smtpd')
-rw-r--r-- | usr.sbin/smtpd/smtpctl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/smtpd/smtpctl.c b/usr.sbin/smtpd/smtpctl.c index 0a13a31ad21..a710c4f0e41 100644 --- a/usr.sbin/smtpd/smtpctl.c +++ b/usr.sbin/smtpd/smtpctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpctl.c,v 1.118 2014/04/19 13:57:17 gilles Exp $ */ +/* $OpenBSD: smtpctl.c,v 1.119 2014/04/22 13:57:58 gilles Exp $ */ /* * Copyright (c) 2013 Eric Faurot <eric@openbsd.org> @@ -307,9 +307,9 @@ srv_iter_evpids(uint32_t msgid, uint64_t *evpid, int *offset) if (evpids == NULL) { alloc = 1000; - evpids = malloc(alloc * sizeof(*evpids)); + evpids = calloc(alloc, sizeof(*evpids)); if (evpids == NULL) - err(1, "malloc"); + err(1, "calloc"); } if (*offset == 0) { |