From: Thomas Hindoe Paaboel Andersen Date: Fri, 26 Sep 2014 22:25:09 +0000 (+0200) Subject: shutdownd: clean up initialization of struct X-Git-Tag: v217~420 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=b748c7596f79945be5263a0d1c88de64eb0c5146 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 --- diff --git a/src/shutdownd/shutdownd.c b/src/shutdownd/shutdownd.c index 99aa4b32b..0f008a610 100644 --- a/src/shutdownd/shutdownd.c +++ b/src/shutdownd/shutdownd.c @@ -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;