Skip to content

Commit

Permalink
reject negative autoboot timeout fix
Browse files Browse the repository at this point in the history
Signed-off-by: Filip Lewiński <[email protected]>
  • Loading branch information
filipleple committed Oct 26, 2023
1 parent 43e6175 commit c1aa41e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
#language fr-FR "<Spacebar>Bascule la Case de pointage"
#string NV_UPDATE_MESSAGE #language en-US "Configuration changed"
#language fr-FR "Configuration changed"
#string INPUT_ERROR_MESSAGE #language en-US "!!"
#language fr-FR "!!"
#string INPUT_ERROR_MESSAGE #language en-US "Invalid input value!!"
#language fr-FR "Invalid input value!!"
#string EMPTY_STRING #language en-US ""
#language fr-FR ""
#string ARE_YOU_SURE_YES #language en-US "Y"
Expand Down
4 changes: 4 additions & 0 deletions MdeModulePkg/Universal/DisplayEngineDxe/InputHandler.c
Original file line number Diff line number Diff line change
Expand Up @@ -747,6 +747,10 @@ GetNumericInput (

case '+':
case '-':
if (ManualInput && ((NumericOp->Flags & EFI_IFR_DISPLAY) == EFI_IFR_DISPLAY_UINT_DEC)) {
UpdateStatusBar(INPUT_ERROR, TRUE);
break;
}
if (ManualInput && IntInput) {
//
// In Manual input mode, check whether input the negative flag.
Expand Down

0 comments on commit c1aa41e

Please sign in to comment.