mirror of https://github.com/acidanthera/audk.git
BaseTools/VolInfo: Correct EFI_SECTION_VERSION display
- Correct typo in print statement, - "BuildNumber" field is UINT16, therefore it needs "0x%04X" format modifier, - "VersionString" field is CHAR16, therefore the input data should be processed to be displayed with "%s" printf modifier. Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com> Reviewed-by: Bob Feng <bob.c.feng@intel.com>
This commit is contained in:
parent
c0b7679aac
commit
fca5de51e1
|
@ -1676,6 +1676,7 @@ Returns:
|
|||
CHAR8 *ToolInputFileName;
|
||||
CHAR8 *ToolOutputFileName;
|
||||
CHAR8 *UIFileName;
|
||||
CHAR8 *VersionString;
|
||||
|
||||
ParsedLength = 0;
|
||||
ToolInputFileName = NULL;
|
||||
|
@ -1816,8 +1817,14 @@ Returns:
|
|||
break;
|
||||
|
||||
case EFI_SECTION_VERSION:
|
||||
printf (" Build Number: 0x%02X\n", *(UINT16 *)(Ptr + SectionHeaderLen));
|
||||
printf (" Version Strg: %s\n", (char*) (Ptr + SectionHeaderLen + sizeof (UINT16)));
|
||||
printf (" Build Number: 0x%04X\n", *(UINT16 *)(Ptr + SectionHeaderLen));
|
||||
VersionString = (CHAR8 *) malloc (UnicodeStrLen (((EFI_VERSION_SECTION *) Ptr)->VersionString) + 1);
|
||||
if (VersionString == NULL) {
|
||||
Error (NULL, 0, 4001, "Resource", "memory cannot be allocated!");
|
||||
return EFI_OUT_OF_RESOURCES;
|
||||
}
|
||||
Unicode2AsciiString (((EFI_VERSION_SECTION *) Ptr)->VersionString, VersionString);
|
||||
printf (" Version String: %s\n", VersionString);
|
||||
break;
|
||||
|
||||
case EFI_SECTION_COMPRESSION:
|
||||
|
|
Loading…
Reference in New Issue