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
This is happening in the "OAMutableURLRequest.m" file calling:
(void)_generateTimestamp { timestamp = [[NSString stringWithFormat:@"%ld", time(NULL)] retain]; }
The 'time' variable doesn't know if it should link to the sys/time or to the CorMedia time.
This can be prevented in two ways:
Declaring "time_t time(time_t *tloc);" at the top
or creating a time structure in the function
PLEASE CHANGE
The text was updated successfully, but these errors were encountered:
This is happening in the "OAMutableURLRequest.m" file calling:
(void)_generateTimestamp { timestamp = [[NSString stringWithFormat:@"%ld", time(NULL)] retain]; }
The 'time' variable doesn't know if it should link to the sys/time or to the CorMedia time.
This can be prevented in two ways:
Declaring "time_t time(time_t *tloc);" at the top
or creating a time structure in the function
PLEASE CHANGE
The text was updated successfully, but these errors were encountered: