1. Update GetStringWorker() of HiiDataBaseDxe to only search in other language and not update the StringSize to avoid GetString() buffer overflow.
2. Update SetupBrowser to correctly handle ordered list option. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10041 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@ -2,7 +2,7 @@
|
||||
Implementation for handling the User Interface option processing.
|
||||
|
||||
|
||||
Copyright (c) 2004 - 2009, Intel Corporation
|
||||
Copyright (c) 2004 - 2010, Intel Corporation
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
@ -421,6 +421,12 @@ ProcessOptions (
|
||||
|
||||
switch (Question->Operand) {
|
||||
case EFI_IFR_ORDERED_LIST_OP:
|
||||
//
|
||||
// Check whether there are Options of this OrderedList
|
||||
//
|
||||
if (IsListEmpty (&Question->OptionListHead)) {
|
||||
break;
|
||||
}
|
||||
//
|
||||
// Initialize Option value array
|
||||
//
|
||||
@ -508,6 +514,12 @@ ProcessOptions (
|
||||
break;
|
||||
|
||||
case EFI_IFR_ONE_OF_OP:
|
||||
//
|
||||
// Check whether there are Options of this OneOf
|
||||
//
|
||||
if (IsListEmpty (&Question->OptionListHead)) {
|
||||
break;
|
||||
}
|
||||
if (Selected) {
|
||||
//
|
||||
// Go ask for input
|
||||
|
Reference in New Issue
Block a user