Message-Id: <
20050423033603.GA32547@mccoy.peters.homeunix.org>
localtime() can return null
p4raw-id: //depot/perl@24307
#ifdef HAS_TM_TM_ZONE
Time_t now;
(void)time(&now);
- Copy(localtime(&now), ptm, 1, struct tm);
+ struct tm* my_tm = localtime(&now);
+ if (my_tm)
+ Copy(my_tm, ptm, 1, struct tm);
#endif
}