Commit 1adc1368 authored by unknown's avatar unknown
Browse files

Fix Bug #19044 IM aborts on exit

On windows IM aborted on assert once one
stoppped it. The reason is that we didn't
close the sockets on windows and therefore,
the listener thread wasn't able to finish.
This happened because we used close() call
for it. While on windows one should use
closesocket().
On other platfroms we have appropriate defines
for closesocket(), so this is the function which
should be used.


server-tools/instance-manager/listener.cc:
  close -> closesocket
parent fe84b016
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -188,7 +188,7 @@ void Listener_thread::run()
          else
          {
            shutdown(client_fd, SHUT_RDWR);
            close(client_fd);
            closesocket(client_fd);
          }
        }
      }
@@ -200,7 +200,7 @@ void Listener_thread::run()
  log_info("Listener_thread::run(): shutdown requested, exiting...");

  for (i= 0; i < num_sockets; i++)
    close(sockets[i]);
    closesocket(sockets[i]);

#ifndef __WIN__
  unlink(unix_socket_address.sun_path);
@@ -213,7 +213,7 @@ void Listener_thread::run()
err:
  // we have to close the ip sockets in case of error
  for (i= 0; i < num_sockets; i++)
    close(sockets[i]);
    closesocket(sockets[i]);

  thread_registry.unregister_thread(&thread_info);
  thread_registry.request_shutdown();
@@ -260,7 +260,7 @@ int Listener_thread::create_tcp_socket()
  {
    log_error("Listener_thread::run(): bind(ip socket) failed, '%s'",
              strerror(errno));
    close(ip_socket);
    closesocket(ip_socket);
    return -1;
  }

@@ -268,7 +268,7 @@ int Listener_thread::create_tcp_socket()
  {
    log_error("Listener_thread::run(): listen(ip socket) failed, %s",
              strerror(errno));
    close(ip_socket);
    closesocket(ip_socket);
    return -1;
  }