You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Filling OSVersionInfo is not thread safe, it shoud be moved into the initialization part. It can cause the OpenType and the TWinHTTP.InternalGetProtocols check failed.
procedureTWinHTTP.InternalConnect(ConnectionTimeOut,SendTimeout,ReceiveTimeout: DWORD);
//...beginif OSVersionInfo.dwOSVersionInfoSize=0thenbegin// API call once
OSVersionInfo.dwOSVersionInfoSize := sizeof(OSVersionInfo);
GetVersionEx(OSVersionInfo);
end;
//...
The text was updated successfully, but these errors were encountered:
Filling
OSVersionInfo
is not thread safe, it shoud be moved into theinitialization
part. It can cause theOpenType
and theTWinHTTP.InternalGetProtocols
check failed.The text was updated successfully, but these errors were encountered: