summaryrefslogtreecommitdiff
path: root/libs/pbd/crossthread.win.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/pbd/crossthread.win.cc')
-rw-r--r--libs/pbd/crossthread.win.cc8
1 files changed, 0 insertions, 8 deletions
diff --git a/libs/pbd/crossthread.win.cc b/libs/pbd/crossthread.win.cc
index 32f52fc12c..5309916ddb 100644
--- a/libs/pbd/crossthread.win.cc
+++ b/libs/pbd/crossthread.win.cc
@@ -25,13 +25,6 @@ CrossThreadChannel::CrossThreadChannel (bool non_blocking)
, receive_socket()
, recv_address()
{
- WSADATA wsaData;
-
- if(WSAStartup(MAKEWORD(1,1),&wsaData) != 0) {
- std::cerr << "CrossThreadChannel::CrossThreadChannel() Winsock initialization failed with error: " << WSAGetLastError() << std::endl;
- return;
- }
-
struct sockaddr_in send_address;
// Create Send Socket
@@ -104,7 +97,6 @@ CrossThreadChannel::~CrossThreadChannel ()
closesocket(send_socket);
closesocket(receive_socket);
- WSACleanup();
}
void