From 0ac0510be0270cde636bbd8c590ef9fbda9d90ef Mon Sep 17 00:00:00 2001 From: Berke Viktor Date: Thu, 16 Feb 2012 17:21:15 +0100 Subject: fix for time stamp format crashes --- src/common/text.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/common/text.c') diff --git a/src/common/text.c b/src/common/text.c index 93392d1a..f8afc4b3 100644 --- a/src/common/text.c +++ b/src/common/text.c @@ -686,6 +686,13 @@ get_stamp_str (char *fmt, time_t tim, char **ret) } len = strftime (dest, sizeof (dest), fmt, localtime (&tim)); +#ifdef WIN32 + if (!len) + { + /* use failsafe format until a correct one is specified */ + len = strftime (dest, sizeof (dest), "[%H:%M]", localtime (&tim)); + } +#endif if (len) { if (prefs.utf8_locale) -- cgit 1.4.1