fix for time stamp format crashes

This commit is contained in:
Berke Viktor
2012-02-16 17:21:15 +01:00
parent fc3d4d31f0
commit 0ac0510be0
2 changed files with 22 additions and 2 deletions

View File

@@ -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)