mu-store: enlarge buffer for strftime

On Debian 9 random memory was printed with the original buffer size
and valgrind complained about the use of uninitialized memory.
This commit is contained in:
Kristian Rietveld 2020-04-30 11:59:53 +02:00
parent caa92af9fb
commit c3032bd672
1 changed files with 1 additions and 1 deletions

View File

@ -1408,7 +1408,7 @@ mu_store_print_info (const MuStore *store, gboolean nocolor)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wformat-y2k"
char tbuf[32];
char tbuf[64];
strftime (tbuf, sizeof(tbuf), "%c", tstamp);
#pragma GCC diagnostic pop