summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NetworkPkg/Ip6Dxe/Ip6Icmp.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/NetworkPkg/Ip6Dxe/Ip6Icmp.c b/NetworkPkg/Ip6Dxe/Ip6Icmp.c
index db40b81d5e..f6a9bb406f 100644
--- a/NetworkPkg/Ip6Dxe/Ip6Icmp.c
+++ b/NetworkPkg/Ip6Dxe/Ip6Icmp.c
@@ -2,7 +2,8 @@
The ICMPv6 handle routines to process the ICMPv6 control messages.
Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.<BR>
-
+ (C) Copyright 2016 Hewlett Packard Enterprise Development LP<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
@@ -479,7 +480,7 @@ Ip6GetPrefix (
return ;
}
- if (PrefixLength == IP6_PREFIX_NUM - 1) {
+ if (PrefixLength >= IP6_PREFIX_NUM - 1) {
return ;
}
@@ -487,7 +488,7 @@ Ip6GetPrefix (
Bit = (UINT8) (PrefixLength % 8);
Value = Prefix->Addr[Byte];
- if ((Byte > 0) && (Byte < 16)) {
+ if (Byte > 0) {
ZeroMem (Prefix->Addr + Byte, 16 - Byte);
}