Port: move memset of anc_buf inside ifdef
authorMichael Jeanson <mjeanson@efficios.com>
Wed, 14 Oct 2015 18:55:14 +0000 (14:55 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Mon, 19 Oct 2015 04:14:08 +0000 (00:14 -0400)
Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
src/common/sessiond-comm/unix.c

index 77a6013f0244572b2c2bb30ae054959db2cdf5c4..e2d0def8e842f2eb156d82178a71ca3be148f96c 100644 (file)
@@ -396,10 +396,11 @@ ssize_t lttcomm_send_creds_unix_sock(int sock, void *buf, size_t len)
        size_t sizeof_cred = sizeof(lttng_sock_cred);
        char anc_buf[CMSG_SPACE(sizeof_cred)];
        lttng_sock_cred *creds;
        size_t sizeof_cred = sizeof(lttng_sock_cred);
        char anc_buf[CMSG_SPACE(sizeof_cred)];
        lttng_sock_cred *creds;
+
+       memset(anc_buf, 0, CMSG_SPACE(sizeof_cred) * sizeof(char));
 #endif /* __linux__ */
 
        memset(&msg, 0, sizeof(msg));
 #endif /* __linux__ */
 
        memset(&msg, 0, sizeof(msg));
-       memset(anc_buf, 0, CMSG_SPACE(sizeof_cred) * sizeof(char));
 
        iov[0].iov_base = buf;
        iov[0].iov_len = len;
 
        iov[0].iov_base = buf;
        iov[0].iov_len = len;
This page took 0.025477 seconds and 4 git commands to generate.