call time instead of gmtime (makes valgrind happy)

This commit is contained in:
rdp.effort 2013-01-16 00:06:56 +01:00
parent 0a6c6ec4f3
commit 71c37bdfc3

View File

@ -34,7 +34,7 @@ UINT64 freerdp_windows_gmtime()
time_t unix_time;
UINT64 windows_time;
gmtime(&unix_time);
time(&unix_time);
windows_time = freerdp_get_windows_time_from_unix_time(unix_time);
return windows_time;