Fix password memory leak inside the Device driver in boot encryption mode.

This commit is contained in:
Mounir IDRASSI 2014-07-07 23:58:10 +02:00
parent 0dda93ca47
commit 9bb962c8bb

View File

@ -101,7 +101,7 @@ NTSTATUS LoadBootArguments ()
BootArgs = *bootArguments; BootArgs = *bootArguments;
BootArgsValid = TRUE; BootArgsValid = TRUE;
memset (bootArguments, 0, sizeof (*bootArguments)); burn (bootArguments, sizeof (*bootArguments));
BootDriveSignatureValid = TRUE; BootDriveSignatureValid = TRUE;