Dmpstore command does not return lasterror equal to 0 when ‘-s’ flag used to dump variables in file

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by : Tapan Shah <tapandshah@hp.com>
Reviewed-by: Jaben Carsey <jaben.carsey@intel.com>


git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16196 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
jcarsey 2014-10-07 19:57:23 +00:00 committed by jcarsey
parent 75e34de46c
commit 8896351646
1 changed files with 1 additions and 1 deletions

View File

@ -335,7 +335,7 @@ AppendSingleVariableToFile (
FreePool (Buffer);
if (!EFI_ERROR (Status) &&
(BufferSize != sizeof (NameSize) + sizeof (DataSize) + sizeof (*Guid) + sizeof (Attributes) + NameSize + DataSize)
(BufferSize != sizeof (NameSize) + sizeof (DataSize) + sizeof (*Guid) + sizeof (Attributes) + NameSize + DataSize + sizeof (UINT32))
) {
Status = EFI_DEVICE_ERROR;
}