public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH] MdePkg/UefiFileHandleLib: Refine the check for valid Ascii character
@ 2017-01-06  8:49 Hao Wu
  2017-01-09  2:18 ` Gao, Liming
  0 siblings, 1 reply; 2+ messages in thread
From: Hao Wu @ 2017-01-06  8:49 UTC (permalink / raw)
  To: edk2-devel; +Cc: Hao Wu, Liming Gao, Michael Kinney

The commit will check if bit 7 is set of an Ascii character to judge its
validity.

Cc: Liming Gao <liming.gao@intel.com>
Cc: Michael Kinney <michael.d.kinney@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Hao Wu <hao.a.wu@intel.com>
---
 MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.c b/MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.c
index daed0f4..57aad77 100644
--- a/MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.c
+++ b/MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.c
@@ -1,7 +1,7 @@
 /** @file
   Provides interface to EFI_FILE_HANDLE functionality.
 
-  Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved. <BR>
+  Copyright (c) 2006 - 2017, Intel Corporation. All rights reserved. <BR>
   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
@@ -1138,7 +1138,7 @@ FileHandleWriteLine(
     }
     UnicodeStrToAsciiStrS (Buffer, AsciiBuffer, Size);
     for (Index = 0; Index < Size; Index++) {
-      if (!((AsciiBuffer[Index] >= 0) && (AsciiBuffer[Index] < 128))){
+      if ((AsciiBuffer[Index] & BIT7) != 0) {
         FreePool(AsciiBuffer);
         return EFI_INVALID_PARAMETER;
       }
-- 
1.9.5.msysgit.0



^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-01-09  2:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-06  8:49 [PATCH] MdePkg/UefiFileHandleLib: Refine the check for valid Ascii character Hao Wu
2017-01-09  2:18 ` Gao, Liming

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox