From: jcarsey Date: Mon, 25 Jan 2010 20:06:10 +0000 (+0000) Subject: fix copyright and license block and fix a size issue. X-Git-Tag: edk2-stable201903~16522 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=ac255da6f5d87d90d32f402cd23479dcc3ca76d9 fix copyright and license block and fix a size issue. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9811 6f19259b-4bc3-4df7-8a09-765794883524 --- diff --git a/ShellPkg/Library/BaseFileHandleLib/BaseFileHandleLib.c b/ShellPkg/Library/BaseFileHandleLib/BaseFileHandleLib.c index 7063ec092b..695a6e21b9 100644 --- a/ShellPkg/Library/BaseFileHandleLib/BaseFileHandleLib.c +++ b/ShellPkg/Library/BaseFileHandleLib/BaseFileHandleLib.c @@ -1,14 +1,14 @@ /** @file Provides interface to EFI_FILE_HANDLE functionality. -Copyright (c) 2006 - 2009, 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 + Copyright (c) 2006 - 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 + http://opensource.org/licenses/bsd-license.php -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. + THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, + WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. **/ @@ -624,9 +624,9 @@ FileHandleGetSize ( append the first D characters of Source to the end of Destination, where D is the lesser of Count and the StrLen() of Source. If appending those D characters will fit within Destination (whose Size is given as CurrentSize) and - still leave room for a null terminator, then those characters are appended, - starting at the original terminating null of Destination, and a new terminating - null is appended. + still leave room for a NULL terminator, then those characters are appended, + starting at the original terminating NULL of Destination, and a new terminating + NULL is appended. If appending D characters onto Destination will result in a overflow of the size given in CurrentSize the string will be grown such that the copy can be performed @@ -979,12 +979,12 @@ FileHandleWriteLine( return (EFI_SUCCESS); } - Size = StrLen(Buffer); + Size = StrSize(Buffer) - sizeof(Buffer[0]); Status = FileHandleWrite(Handle, &Size, Buffer); if (EFI_ERROR(Status)) { return (Status); } - Size = StrLen(L"\r\n"); + Size = StrSize(L"\r\n") - sizeof(CHAR16); return FileHandleWrite(Handle, &Size, L"\r\n"); }