memcached: Style fix
authorPavel Rochnyack <pavel2000@ngs.ru>
Tue, 26 Sep 2017 19:41:18 +0000 (02:41 +0700)
committerPavel Rochnyack <pavel2000@ngs.ru>
Tue, 26 Sep 2017 19:48:23 +0000 (02:48 +0700)
src/memcached.c

index 36b3c9a..1eb02a3 100644 (file)
@@ -67,6 +67,7 @@ static void memcached_free(void *arg) {
   if (st->fd >= 0) {
     shutdown(st->fd, SHUT_RDWR);
     close(st->fd);
   if (st->fd >= 0) {
     shutdown(st->fd, SHUT_RDWR);
     close(st->fd);
+    st->fd = -1;
   }
 
   sfree(st->name);
   }
 
   sfree(st->name);
@@ -163,9 +164,9 @@ static int memcached_connect_inet(memcached_t *st) {
     }
 
     /* Wait until connection establishes */
     }
 
     /* Wait until connection establishes */
-    struct pollfd pollfd;
-    pollfd.fd = fd;
-    pollfd.events = POLLOUT;
+    struct pollfd pollfd = {
+        .fd = fd, .events = POLLOUT,
+    };
     do
       status = poll(&pollfd, 1, MEMCACHED_CONNECT_TIMEOUT);
     while (status < 0 && errno == EINTR);
     do
       status = poll(&pollfd, 1, MEMCACHED_CONNECT_TIMEOUT);
     while (status < 0 && errno == EINTR);
@@ -177,9 +178,8 @@ static int memcached_connect_inet(memcached_t *st) {
 
     /* Check if all is good */
     int socket_error;
 
     /* Check if all is good */
     int socket_error;
-    socklen_t socket_error_len = sizeof(socket_error);
     status = getsockopt(fd, SOL_SOCKET, SO_ERROR, (void *)&socket_error,
     status = getsockopt(fd, SOL_SOCKET, SO_ERROR, (void *)&socket_error,
-                        &socket_error_len);
+                        &(socklen_t){sizeof(socket_error)});
     if (status != 0 || socket_error != 0) {
       close(fd);
       fd = -1;
     if (status != 0 || socket_error != 0) {
       close(fd);
       fd = -1;
@@ -219,9 +219,9 @@ static int memcached_query_daemon(char *buffer, size_t buffer_size,
     return -1;
   }
 
     return -1;
   }
 
-  struct pollfd pollfd;
-  pollfd.fd = st->fd;
-  pollfd.events = POLLOUT;
+  struct pollfd pollfd = {
+      .fd = st->fd, .events = POLLOUT,
+  };
 
   do
     status = poll(&pollfd, 1, MEMCACHED_IO_TIMEOUT);
 
   do
     status = poll(&pollfd, 1, MEMCACHED_IO_TIMEOUT);