1
0
mirror of https://github.com/ValveSoftware/Proton.git synced 2025-05-13 23:27:21 +03:00

lsteamclient: Clear last error in create_win_interface().

CW-Bug-Id: 
This commit is contained in:
Paul Gofman 2024-01-08 21:07:57 -06:00
parent 81de069336
commit e4ccddf6f6

@ -300,6 +300,7 @@ struct w_steam_iface *create_win_interface(const char *name, void *u_iface)
done:
LeaveCriticalSection(&steamclient_cs);
if (!ret) ERR("Don't recognize interface name: %s\n", name);
SetLastError(0);
return ret;
}