shutdownd: clean up initialization of struct

No functional change. We just don't assign the value twice.

Found by coverity. Fixes: CID#1237616 and #1237617
This commit is contained in:
Thomas Hindoe Paaboel Andersen 2014-09-27 00:25:09 +02:00
parent 45f1b67a70
commit b748c7596f

View file

@ -52,8 +52,8 @@ static int read_packet(int fd, union shutdown_buffer *_b) {
union shutdown_buffer b; /* We maintain our own copy here, in
* order not to corrupt the last message */
struct iovec iovec = {
iovec.iov_base = &b,
iovec.iov_len = sizeof(b) - 1,
.iov_base = &b,
.iov_len = sizeof(b) - 1,
};
union {
struct cmsghdr cmsghdr;