public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Wu, Hao A" <hao.a.wu@intel.com>
To: "Ni, Ruiyu" <ruiyu.ni@intel.com>,
	"edk2-devel@lists.01.org" <edk2-devel@lists.01.org>
Subject: Re: [PATCH] MdePkg/SafeString.c: Fix code to be more readable
Date: Mon, 6 Mar 2017 07:27:57 +0000	[thread overview]
Message-ID: <B80AF82E9BFB8E4FBD8C89DA810C6A0931C7A398@SHSMSX104.ccr.corp.intel.com> (raw)
In-Reply-To: <20170306072427.601984-1-ruiyu.ni@intel.com>

Reviewed-by: Hao Wu <hao.a.wu@intel.com>

Best Regards,
Hao Wu

> -----Original Message-----
> From: Ni, Ruiyu
> Sent: Monday, March 06, 2017 3:24 PM
> To: edk2-devel@lists.01.org
> Cc: Wu, Hao A
> Subject: [PATCH] MdePkg/SafeString.c: Fix code to be more readable
> 
> The change doesn't impact the functionality.
> 
> Contributed-under: TianoCore Contribution Agreement 1.0
> Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com>
> Cc: Hao A Wu <hao.a.wu@intel.com>
> ---
>  MdePkg/Library/BaseLib/SafeString.c | 26 ++++++++++++++++----------
>  1 file changed, 16 insertions(+), 10 deletions(-)
> 
> diff --git a/MdePkg/Library/BaseLib/SafeString.c
> b/MdePkg/Library/BaseLib/SafeString.c
> index b7895ad..249fe47 100644
> --- a/MdePkg/Library/BaseLib/SafeString.c
> +++ b/MdePkg/Library/BaseLib/SafeString.c
> @@ -1234,6 +1234,7 @@ StrToIpv6Address (
>          //
>          // Uintn won't exceed MAX_UINT16 if number of hexadecimal digit
> characters is no more than 4.
>          //
> +        ASSERT (AddressIndex + 1 < ARRAY_SIZE (Address->Addr));
>          LocalAddress.Addr[AddressIndex] = (UINT8) ((UINT16) Uintn >> 8);
>          LocalAddress.Addr[AddressIndex + 1] = (UINT8) Uintn;
>          AddressIndex += 2;
> @@ -1286,11 +1287,13 @@ StrToIpv6Address (
>    }
>    CopyMem (&Address->Addr[0], &LocalAddress.Addr[0], CompressStart);
>    ZeroMem (&Address->Addr[CompressStart], ARRAY_SIZE (Address->Addr) -
> AddressIndex);
> -  CopyMem (
> -    &Address->Addr[CompressStart + ARRAY_SIZE (Address->Addr) -
> AddressIndex],
> -    &LocalAddress.Addr[CompressStart],
> -    AddressIndex - CompressStart
> -    );
> +  if (AddressIndex > CompressStart) {
> +    CopyMem (
> +      &Address->Addr[CompressStart + ARRAY_SIZE (Address->Addr) -
> AddressIndex],
> +      &LocalAddress.Addr[CompressStart],
> +      AddressIndex - CompressStart
> +      );
> +  }
> 
>    if (PrefixLength != NULL) {
>      *PrefixLength = LocalPrefixLength;
> @@ -3204,6 +3207,7 @@ AsciiStrToIpv6Address (
>          //
>          // Uintn won't exceed MAX_UINT16 if number of hexadecimal digit
> characters is no more than 4.
>          //
> +        ASSERT (AddressIndex + 1 < ARRAY_SIZE (Address->Addr));
>          LocalAddress.Addr[AddressIndex] = (UINT8) ((UINT16) Uintn >> 8);
>          LocalAddress.Addr[AddressIndex + 1] = (UINT8) Uintn;
>          AddressIndex += 2;
> @@ -3256,11 +3260,13 @@ AsciiStrToIpv6Address (
>    }
>    CopyMem (&Address->Addr[0], &LocalAddress.Addr[0], CompressStart);
>    ZeroMem (&Address->Addr[CompressStart], ARRAY_SIZE (Address->Addr) -
> AddressIndex);
> -  CopyMem (
> -    &Address->Addr[CompressStart + ARRAY_SIZE (Address->Addr) -
> AddressIndex],
> -    &LocalAddress.Addr[CompressStart],
> -    AddressIndex - CompressStart
> -    );
> +  if (AddressIndex > CompressStart) {
> +    CopyMem (
> +      &Address->Addr[CompressStart + ARRAY_SIZE (Address->Addr) -
> AddressIndex],
> +      &LocalAddress.Addr[CompressStart],
> +      AddressIndex - CompressStart
> +      );
> 
> +  }
> 
>    if (PrefixLength != NULL) {
>      *PrefixLength = LocalPrefixLength;
> --
> 2.9.0.windows.1



      reply	other threads:[~2017-03-06  7:27 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-03-06  7:24 [PATCH] MdePkg/SafeString.c: Fix code to be more readable Ruiyu Ni
2017-03-06  7:27 ` Wu, Hao A [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=B80AF82E9BFB8E4FBD8C89DA810C6A0931C7A398@SHSMSX104.ccr.corp.intel.com \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox