X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=Nt32Pkg%2FMiscSubClassPlatformDxe%2FMiscSystemLanguageStringFunction.c;h=f033d1145e50b0b1b372e1c3b092e37e826fe934;hb=1ea08a3dcdd61c7481ec78ad8b8037ee6ca45402;hp=b2232a442f7cf1ce3672ceb88a7559415c8f0c21;hpb=1fdd39d371ecd0c660dce8926add29846c95cd37;p=mirror_edk2.git diff --git a/Nt32Pkg/MiscSubClassPlatformDxe/MiscSystemLanguageStringFunction.c b/Nt32Pkg/MiscSubClassPlatformDxe/MiscSystemLanguageStringFunction.c index b2232a442f..f033d1145e 100644 --- a/Nt32Pkg/MiscSubClassPlatformDxe/MiscSystemLanguageStringFunction.c +++ b/Nt32Pkg/MiscSubClassPlatformDxe/MiscSystemLanguageStringFunction.c @@ -1,24 +1,15 @@ -/*++ +/** @file -Copyright (c) 2009, Intel Corporation. All rights reserved.
-This software and associated documentation (if any) is furnished -under a license and may only be used or copied in accordance -with the terms of the license. Except as permitted by such -license, no part of this software or documentation may be -reproduced, stored in a retrieval system, or transmitted in any -form or by any means without the express written consent of -Intel Corporation. +Copyright (c) 2009 - 2011, 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 +http://opensource.org/licenses/bsd-license.php -Module Name: +THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, +WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - MiscResetCapabilitiesFunction.c - -Abstract: - - ResetCapabilities. - SMBIOS type 23. - ---*/ +**/ #include "MiscSubclassDriver.h" /** @@ -79,13 +70,8 @@ MISC_SMBIOS_TABLE_FUNCTION(SystemLanguageString) // // Now we have got the full smbios record, call smbios protocol to add this record. // - SmbiosHandle = 0; - Status = Smbios-> Add( - Smbios, - NULL, - &SmbiosHandle, - (EFI_SMBIOS_TABLE_HEADER *) SmbiosRecord - ); + Status = AddSmbiosRecord (Smbios, &SmbiosHandle, (EFI_SMBIOS_TABLE_HEADER *) SmbiosRecord); + FreePool(SmbiosRecord); return Status; }