From 5838d66e73ac50c5547796afe1e86aa204b77fea Mon Sep 17 00:00:00 2001 From: "Daniel P. Berrange" Date: Tue, 8 Mar 2016 11:44:26 +0000 Subject: [PATCH] io: initialize sockets in test program The win32 sockets layer requires that socket_init() is called otherwise nothing will work. Reviewed-by: Paolo Bonzini Signed-off-by: Daniel P. Berrange --- tests/test-io-channel-socket.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test-io-channel-socket.c b/tests/test-io-channel-socket.c index 6098fee..f226e47 100644 --- a/tests/test-io-channel-socket.c +++ b/tests/test-io-channel-socket.c @@ -489,6 +489,7 @@ int main(int argc, char **argv) bool has_ipv4, has_ipv6; module_call_init(MODULE_INIT_QOM); + socket_init(); g_test_init(&argc, &argv, NULL); -- 2.7.4