diff --git a/ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.c b/ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.c index da1d92fd17..2db8a3a2cf 100644 --- a/ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.c +++ b/ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.c @@ -169,6 +169,7 @@ LoadedImageProtocolDumpInformation( EFI_STATUS Status; CHAR16 *RetVal; CHAR16 *Temp; + CHAR16 *FilePath; CHAR16 *CodeType; CHAR16 *DataType; @@ -197,6 +198,8 @@ LoadedImageProtocolDumpInformation( return NULL; } + FilePath = ConvertDevicePathToText(LoadedImage->FilePath, TRUE, TRUE); + DataType = ConvertMemoryType(LoadedImage->ImageDataType); CodeType = ConvertMemoryType(LoadedImage->ImageCodeType); @@ -207,7 +210,7 @@ LoadedImageProtocolDumpInformation( LoadedImage->ParentHandle, LoadedImage->SystemTable, LoadedImage->DeviceHandle, - LoadedImage->FilePath, + FilePath, LoadedImage->LoadOptionsSize, LoadedImage->LoadOptions, LoadedImage->ImageBase, @@ -219,6 +222,7 @@ LoadedImageProtocolDumpInformation( SHELL_FREE_NON_NULL(Temp); + SHELL_FREE_NON_NULL(FilePath); SHELL_FREE_NON_NULL(CodeType); SHELL_FREE_NON_NULL(DataType); diff --git a/ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.uni b/ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.uni index 273a4201bc..7b3711d741 100644 --- a/ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.uni +++ b/ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.uni @@ -352,7 +352,7 @@ " ParentHandle..: %%H%x%%N\r\n" " SystemTable...: %%H%x%%N\r\n" " DeviceHandle..: %%H%x%%N\r\n" - " FilePath......: %%H%x%%N\r\n" + " FilePath......: %%H%s%%N\r\n" " OptionsSize...: %%H%x%%N\r\n" " LoadOptions...: %%H%x%%N\r\n" " ImageBase.....: %%H%x%%N\r\n"