mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
mlog: terminate a string at last char, just in case
This commit is contained in:
parent
d753d716a6
commit
38c8f4e0a3
@ -59,6 +59,7 @@ static std::string generate_log_filename(const char *base)
|
||||
strcpy(tmp, "unknown");
|
||||
else
|
||||
strftime(tmp, sizeof(tmp), "%Y-%m-%d-%H-%M-%S", &tm);
|
||||
tmp[sizeof(tmp) - 1] = 0;
|
||||
filename += "-";
|
||||
filename += tmp;
|
||||
return filename;
|
||||
|
Loading…
Reference in New Issue
Block a user