Commit fc5884c2 authored by Bruno Jesus's avatar Bruno Jesus Committed by Alexandre Julliard

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

parent 263a1448
......@@ -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];
......
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