mirror of
https://github.com/yuzu-emu/FasTC.git
synced 2024-11-24 05:25:49 +01:00
Memset filename to zero first
This commit is contained in:
parent
319b293212
commit
6cd8facf49
@ -127,6 +127,7 @@ int main(int argc, char **argv) {
|
||||
FasTC::Image<> diff = img1.Diff(&img2, diff_multiplier);
|
||||
|
||||
char fname_buf [5 + 16 + 4 + 1]; // "diff-" + hash + ".png" + null
|
||||
memset(fname_buf, 0, sizeof(fname_buf));
|
||||
strncat(fname_buf, "diff-", 5);
|
||||
gen_random(fname_buf + 5, 16);
|
||||
strncat(fname_buf + 5 + 16, ".png", 4);
|
||||
|
Loading…
Reference in New Issue
Block a user