ws2_32: Add a missing break.

Signed-off-by: Jiangyi Chen <chenjiangyi@uniontech.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Jiangyi Chen 2021-03-15 11:24:02 +08:00 committed by Alexandre Julliard
parent 3b874440ac
commit 37b7d573b2
1 changed files with 1 additions and 0 deletions

View File

@ -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;
}
}