mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
mlog: terminate a string at last char, just in case
This commit is contained in:
parent
d753d716a6
commit
38c8f4e0a3
1 changed files with 1 additions and 0 deletions
|
@ -59,6 +59,7 @@ static std::string generate_log_filename(const char *base)
|
||||||
strcpy(tmp, "unknown");
|
strcpy(tmp, "unknown");
|
||||||
else
|
else
|
||||||
strftime(tmp, sizeof(tmp), "%Y-%m-%d-%H-%M-%S", &tm);
|
strftime(tmp, sizeof(tmp), "%Y-%m-%d-%H-%M-%S", &tm);
|
||||||
|
tmp[sizeof(tmp) - 1] = 0;
|
||||||
filename += "-";
|
filename += "-";
|
||||||
filename += tmp;
|
filename += tmp;
|
||||||
return filename;
|
return filename;
|
||||||
|
|
Loading…
Reference in a new issue