fix for word wrapping.
fix for SimpleTextInEx callbacks. remove an ASSERT. fix for -noconsolein parameter. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11544 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@ -82,9 +82,8 @@ ShellCommandRunPause (
|
||||
} else {
|
||||
Status = ShellPromptForResponse(ShellPromptResponseTypeQuitContinue, NULL, (VOID**)&Resp);
|
||||
}
|
||||
ASSERT_EFI_ERROR(Status);
|
||||
|
||||
if (Resp == NULL || *Resp == ShellPromptResponseQuit) {
|
||||
if (EFI_ERROR(Status) || Resp == NULL || *Resp == ShellPromptResponseQuit) {
|
||||
ShellCommandRegisterExit(TRUE);
|
||||
ShellStatus = SHELL_ABORTED;
|
||||
}
|
||||
|
Reference in New Issue
Block a user