fixed memleak in datetime()

This commit is contained in:
Aaron Marcher 2016-08-15 12:43:43 +02:00 committed by Aaron Marcher (drkhsh)
parent a8d5bde6a5
commit 086a70cde0

View file

@ -160,6 +160,7 @@ datetime(const char *timeformat)
setlocale(LC_TIME, "");
if(!strftime(buf, bufsize, timeformat, localtime(&tm))) {
setlocale(LC_TIME, "C");
free(buf);
fprintf(stderr, "Strftime failed.\n");
return smprintf("n/a");
}