1) Change the return type of IfrLibFreeUpdateData to VOID.
2) Remove some unused #include and library instance. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6747 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@@ -1,6 +1,9 @@
|
||||
#/** @file
|
||||
#
|
||||
# Component name for module UefiEfiIfrSupportLib
|
||||
# Library instance for ExtendedIfrSupportLib.
|
||||
#
|
||||
# This library instance implements the API which is
|
||||
# related to IFR operations but reference data structures
|
||||
# that are not defined in UEFI specification, for example EFI_IFR_GUID_LABEL.
|
||||
#
|
||||
# Copyright (c) 2007 - 2008, Intel Corporation. <BR>
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
|
@@ -307,25 +307,17 @@ IfrLibInitUpdateData (
|
||||
|
||||
@param UpdateData The adding data;
|
||||
|
||||
@retval EFI_SUCCESS Resource in UpdateData is released.
|
||||
@retval EFI_INVALID_PARAMETER UpdateData is NULL.
|
||||
|
||||
**/
|
||||
EFI_STATUS
|
||||
VOID
|
||||
IfrLibFreeUpdateData (
|
||||
IN EFI_HII_UPDATE_DATA *UpdateData
|
||||
)
|
||||
{
|
||||
EFI_STATUS Status;
|
||||
|
||||
if (UpdateData == NULL) {
|
||||
return EFI_INVALID_PARAMETER;
|
||||
}
|
||||
|
||||
Status = gBS->FreePool (UpdateData->Data);
|
||||
ASSERT (UpdateData != NULL);
|
||||
|
||||
FreePool (UpdateData->Data);
|
||||
UpdateData->Data = NULL;
|
||||
|
||||
return Status;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user