]> git.sur5r.net Git - openldap/commitdiff
Silence valgrind complaint
authorHoward Chu <hyc@openldap.org>
Thu, 6 Oct 2005 20:06:53 +0000 (20:06 +0000)
committerHoward Chu <hyc@openldap.org>
Thu, 6 Oct 2005 20:06:53 +0000 (20:06 +0000)
servers/slapd/daemon.c

index a0125a19fc1248ba7f919d56d4112b8515d75805..098bce5242d7d042e2d977dfb8c015b551d36178 100644 (file)
@@ -207,7 +207,7 @@ static struct slap_daemon {
 #define        SLAP_SOCK_IS_MUTE(s)    (!SLAP_SOCK_IS_READ(s))
 
 #define SLAP_SOCK_SET_INIT     \
-       slap_daemon.sd_epolls = ch_malloc(sizeof(struct epoll_event) * dtblsize * 2);   \
+       slap_daemon.sd_epolls = ch_calloc(1, sizeof(struct epoll_event) * dtblsize * 2);        \
        slap_daemon.sd_index = ch_malloc(sizeof(int) * dtblsize);       \
        slap_daemon.sd_epfd = epoll_create( dtblsize ); \
        for (i=0; i<dtblsize; i++) slap_daemon.sd_index[i] = -1