From 0594532cf1d6bb5fc8886d1c99db4e3861185112 Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Mon, 14 Jul 2014 17:43:31 +0200 Subject: 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. --- src/Mount/Mount.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Mount/Mount.c') diff --git a/src/Mount/Mount.c b/src/Mount/Mount.c index c63d31eb..2c14010e 100644 --- a/src/Mount/Mount.c +++ b/src/Mount/Mount.c @@ -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 (); -- cgit v1.2.3