Commit 37b7d573 authored by Jiangyi Chen's avatar Jiangyi Chen Committed by Alexandre Julliard

ws2_32: Add a missing break.

parent 3b874440
......@@ -7484,6 +7484,7 @@ SOCKET WINAPI WSASocketW(int af, int type, int protocol,
if (!af) af = supported_protocols[i].iAddressFamily;
if (!type) type = supported_protocols[i].iSocketType;
if (!protocol) protocol = supported_protocols[i].iProtocol;
break;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment