From 7412cb4d9185472371a738b33e3e60c2017c89d6 Mon Sep 17 00:00:00 2001 From: ydong10 Date: Thu, 10 May 2012 08:00:22 +0000 Subject: Enhance the logic when extract data from storage. Signed-off-by: Eric Dong Reviewed-by: Liming Gao git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13301 6f19259b-4bc3-4df7-8a09-765794883524 --- .../FrameworkHiiOnUefiHiiThunk/ConfigAccess.c | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/ConfigAccess.c b/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/ConfigAccess.c index 86820ca5da..c33a3f0b8e 100644 --- a/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/ConfigAccess.c +++ b/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/ConfigAccess.c @@ -3,7 +3,7 @@ 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. -Copyright (c) 2008 - 2011, Intel Corporation. All rights reserved.
+Copyright (c) 2008 - 2012, 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 @@ -74,9 +74,12 @@ GetFirstStorageOfFormSet ( StorageList = GetFirstNode (&FormSet->StorageListHead); - if (!IsNull (&FormSet->StorageListHead, StorageList)) { + while (!IsNull (&FormSet->StorageListHead, StorageList)) { Storage = FORMSET_STORAGE_FROM_LINK (StorageList); - return Storage; + if (Storage->Type == EFI_HII_VARSTORE_BUFFER) { + return Storage; + } + StorageList = GetNextNode (&FormSet->StorageListHead, StorageList); } return NULL; @@ -155,6 +158,10 @@ GetStorageFromConfigString ( while (!IsNull (&FormSet->StorageListHead, StorageList)) { Storage = FORMSET_STORAGE_FROM_LINK (StorageList); + StorageList = GetNextNode (&FormSet->StorageListHead, StorageList); + if (Storage->Type != EFI_HII_VARSTORE_BUFFER) { + continue; + } if ((Storage->VarStoreId == FormSet->DefaultVarStoreId) && (FormSet->OriginalDefaultVarStoreName != NULL)) { Name = FormSet->OriginalDefaultVarStoreName; @@ -165,8 +172,6 @@ GetStorageFromConfigString ( if (HiiIsConfigHdrMatch (ConfigString, &Storage->Guid, Name)) { return Storage; } - - StorageList = GetNextNode (&FormSet->StorageListHead, StorageList); } return NULL; @@ -474,6 +479,12 @@ ThunkExtractConfig ( } BufferStorage = FORMSET_STORAGE_FROM_LINK (StorageList); StorageList = GetNextNode (&FormSetContext->StorageListHead, StorageList); + if (BufferStorage->Type != EFI_HII_VARSTORE_BUFFER) { + // + // BufferStorage type should be EFI_HII_VARSTORE_BUFFER + // + continue; + } } VarStoreName = NULL; -- cgit v1.2.3