Commit 45bf4173 authored by Gisle Vanem's avatar Gisle Vanem
Browse files

Cleanup WIN32 target using WSACleanup().

parent 48029d7e
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -294,6 +294,11 @@ int main(int argc, char **argv)
    }

  ares_destroy(channel);

#ifdef USE_WINSOCK
  WSACleanup();
#endif

  return 0;
}

+5 −0
Original line number Diff line number Diff line
@@ -143,6 +143,11 @@ int main(int argc, char **argv)
    }

  ares_destroy(channel);

#ifdef USE_WINSOCK
  WSACleanup();
#endif

  return 0;
}