Add ASSERT when EFI decompress need to be parsed but it is not supported.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8191 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
lgao4 2009-04-28 01:37:19 +00:00
parent 873b7997ef
commit 12b3e61ee8
1 changed files with 5 additions and 0 deletions

View File

@ -640,6 +640,11 @@ Decompress (
}
break;
} else {
//
// PcdDxeIplSupportUefiDecompress is FALSE
// Don't support UEFI decompression algorithm.
//
ASSERT (FALSE);
return EFI_NOT_FOUND;
}