Mark Watson wrote:
On Sunday 06 February 2005 09:06, Achim Tuffentsammer wrote:that should do it: // calculate today's date time_t t = time(NULL); struct tm *res; struct tm *now = localtime_r(&t, res);Shouldn't that read: struct rm res; struct tm * now = localtime_r(&t, &res);
Correct, that probably caused the lockup by CYM. Thanks Achim