mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-25 14:44:28 +02:00
Fix a bug in HII thunk that ThunkCallback does not support callback for a text tag with interactive flag in a Framework form.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9895 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
fa6d3ee491
commit
d2f9134515
@ -3,7 +3,7 @@
|
|||||||
by HII Thunk Modules. These Config access Protocols are used to thunk UEFI Config
|
by HII Thunk Modules. These Config access Protocols are used to thunk UEFI Config
|
||||||
Access Callback to Framework HII Callback and EFI Variable Set/Get operations.
|
Access Callback to Framework HII Callback and EFI Variable Set/Get operations.
|
||||||
|
|
||||||
Copyright (c) 2008, Intel Corporation
|
Copyright (c) 2008 - 2010, Intel Corporation
|
||||||
All rights reserved. This program and the accompanying materials
|
All rights reserved. This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
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
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
@ -701,6 +701,10 @@ CreateIfrDataArray (
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case EFI_IFR_TYPE_ACTION:
|
||||||
|
Size = 0;
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
ASSERT (FALSE);
|
ASSERT (FALSE);
|
||||||
Size = 0;
|
Size = 0;
|
||||||
@ -755,6 +759,10 @@ CreateIfrDataArray (
|
|||||||
FreePool (String);
|
FreePool (String);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case EFI_IFR_TYPE_ACTION:
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
ASSERT (FALSE);
|
ASSERT (FALSE);
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user