Replaced gmtime with gmtime_r
This commit is contained in:
parent
1a02af5a12
commit
a45afe9db7
@ -213,11 +213,12 @@ void GetNativeSystemInfo(LPSYSTEM_INFO lpSystemInfo)
|
||||
void GetSystemTime(LPSYSTEMTIME lpSystemTime)
|
||||
{
|
||||
time_t ct = 0;
|
||||
struct tm tres;
|
||||
struct tm* stm = NULL;
|
||||
WORD wMilliseconds = 0;
|
||||
ct = time(NULL);
|
||||
wMilliseconds = (WORD)(GetTickCount() % 1000);
|
||||
stm = gmtime(&ct);
|
||||
stm = gmtime_r(&ct, &tres);
|
||||
ZeroMemory(lpSystemTime, sizeof(SYSTEMTIME));
|
||||
|
||||
if (stm)
|
||||
|
Loading…
Reference in New Issue
Block a user