Make sure BASE_LIST is always aligned on a 64-bit boundary
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8451 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@ -265,7 +265,7 @@ UnicodeVSPrint (
|
|||||||
IN VA_LIST Marker
|
IN VA_LIST Marker
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
UINT8 BaseListMarker[256];
|
UINT64 BaseListMarker[256 / sizeof (UINT64)];
|
||||||
|
|
||||||
DxePrintLibPrint2ProtocolVaListToBaseList (
|
DxePrintLibPrint2ProtocolVaListToBaseList (
|
||||||
FALSE,
|
FALSE,
|
||||||
@ -415,7 +415,7 @@ UnicodeVSPrintAsciiFormat (
|
|||||||
IN VA_LIST Marker
|
IN VA_LIST Marker
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
UINT8 BaseListMarker[256];
|
UINT64 BaseListMarker[256 / sizeof (UINT64)];
|
||||||
|
|
||||||
DxePrintLibPrint2ProtocolVaListToBaseList (
|
DxePrintLibPrint2ProtocolVaListToBaseList (
|
||||||
TRUE,
|
TRUE,
|
||||||
@ -616,7 +616,7 @@ AsciiVSPrint (
|
|||||||
IN VA_LIST Marker
|
IN VA_LIST Marker
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
UINT8 BaseListMarker[256];
|
UINT64 BaseListMarker[256 / sizeof (UINT64)];
|
||||||
|
|
||||||
DxePrintLibPrint2ProtocolVaListToBaseList (
|
DxePrintLibPrint2ProtocolVaListToBaseList (
|
||||||
TRUE,
|
TRUE,
|
||||||
@ -763,7 +763,7 @@ AsciiVSPrintUnicodeFormat (
|
|||||||
IN VA_LIST Marker
|
IN VA_LIST Marker
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
UINT8 BaseListMarker[256];
|
UINT64 BaseListMarker[256 / sizeof (UINT64)];
|
||||||
|
|
||||||
DxePrintLibPrint2ProtocolVaListToBaseList (
|
DxePrintLibPrint2ProtocolVaListToBaseList (
|
||||||
FALSE,
|
FALSE,
|
||||||
|
Reference in New Issue
Block a user