mirror of https://github.com/acidanthera/audk.git
Fix build break caused by a unresolved external symbol _memset in BaseUefiTianoCustomDecompressLib.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8155 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
50c247fd8f
commit
779b8368fa
|
@ -632,7 +632,6 @@ UefiTianoDecompress (
|
||||||
IN UINT32 Version
|
IN UINT32 Version
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
UINT32 Index;
|
|
||||||
UINT32 CompSize;
|
UINT32 CompSize;
|
||||||
UINT32 OrigSize;
|
UINT32 OrigSize;
|
||||||
SCRATCH_DATA *Sd;
|
SCRATCH_DATA *Sd;
|
||||||
|
@ -660,9 +659,8 @@ UefiTianoDecompress (
|
||||||
|
|
||||||
Src = Src + 8;
|
Src = Src + 8;
|
||||||
|
|
||||||
for (Index = 0; Index < sizeof (SCRATCH_DATA); Index++) {
|
SetMem (Sd, sizeof (SCRATCH_DATA), 0);
|
||||||
((UINT8 *) Sd)[Index] = 0;
|
|
||||||
}
|
|
||||||
//
|
//
|
||||||
// The length of the field 'Position Set Code Length Array Size' in Block Header.
|
// The length of the field 'Position Set Code Length Array Size' in Block Header.
|
||||||
// For UEFI 2.0 de/compression algorithm(Version 1), mPBit = 4
|
// For UEFI 2.0 de/compression algorithm(Version 1), mPBit = 4
|
||||||
|
|
Loading…
Reference in New Issue