Skip to content
Snippets Groups Projects
Commit fc5884c2 authored by Bruno Jesus's avatar Bruno Jesus Committed by Alexandre Julliard
Browse files

ws2_32: Do not convert EAI_xxx return in case of success.

parent 263a1448
No related branches found
No related tags found
No related merge requests found
......@@ -5365,6 +5365,8 @@ static int convert_aiflag_u2w(int unixflags) {
static int convert_eai_u2w(int unixret) {
int i;
if (!unixret) return 0;
for (i=0;ws_eai_map[i][0];i++)
if (ws_eai_map[i][1] == unixret)
return ws_eai_map[i][0];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment