chiark / gitweb /
shutdownd: clean up initialization of struct
authorThomas Hindoe Paaboel Andersen <phomes@gmail.com>
Fri, 26 Sep 2014 22:25:09 +0000 (00:25 +0200)
committerThomas Hindoe Paaboel Andersen <phomes@gmail.com>
Fri, 26 Sep 2014 22:30:00 +0000 (00:30 +0200)
No functional change. We just don't assign the value twice.

Found by coverity. Fixes: CID#1237616 and #1237617

src/shutdownd/shutdownd.c

index 99aa4b32b3ffc6e2f7ac3b2db7f6076d97e31f0f..0f008a6100b475b121641e395e7bb3174d47db90 100644 (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;