mirror of https://github.com/acidanthera/audk.git
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:
parent
873b7997ef
commit
12b3e61ee8
|
@ -640,6 +640,11 @@ Decompress (
|
|||
}
|
||||
break;
|
||||
} else {
|
||||
//
|
||||
// PcdDxeIplSupportUefiDecompress is FALSE
|
||||
// Don't support UEFI decompression algorithm.
|
||||
//
|
||||
ASSERT (FALSE);
|
||||
return EFI_NOT_FOUND;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue