1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-11 11:08:02 -06:00

Mount.c : call burn directly in szFileName instead of (&szFileName). This was not an issue because the compiler returns the same address for both, but for the sake of clarity it had to be corrected.

This commit is contained in:
Mounir IDRASSI
2014-07-14 17:43:31 +02:00
parent c220db0128
commit 0594532cf1

View File

@@ -164,7 +164,7 @@ static void localcleanup (void)
burn (&CmdVolumePassword, sizeof (CmdVolumePassword));
burn (&mountOptions, sizeof (mountOptions));
burn (&defaultMountOptions, sizeof (defaultMountOptions));
burn (&szFileName, sizeof(szFileName));
burn (szFileName, sizeof(szFileName));
/* Cleanup common code resources */
cleanup ();