mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-12-29 03:14:04 +00:00
Fix compilation error when checking for hidden variable names ('s8_t i' was hidden in some case statements in nd6_input()).
This commit is contained in:
parent
e584557afe
commit
89a1420609
@ -336,7 +336,6 @@ nd6_input(struct pbuf *p, struct netif *inp)
|
|||||||
{
|
{
|
||||||
struct ra_header * ra_hdr;
|
struct ra_header * ra_hdr;
|
||||||
u8_t * buffer; /* Used to copy options. */
|
u8_t * buffer; /* Used to copy options. */
|
||||||
s8_t i;
|
|
||||||
u16_t offset;
|
u16_t offset;
|
||||||
|
|
||||||
/* Check that RA header fits in packet. */
|
/* Check that RA header fits in packet. */
|
||||||
@ -486,7 +485,6 @@ nd6_input(struct pbuf *p, struct netif *inp)
|
|||||||
case ICMP6_TYPE_RD: /* Redirect */
|
case ICMP6_TYPE_RD: /* Redirect */
|
||||||
{
|
{
|
||||||
struct redirect_header * redir_hdr;
|
struct redirect_header * redir_hdr;
|
||||||
s8_t i;
|
|
||||||
struct lladdr_option * lladdr_opt;
|
struct lladdr_option * lladdr_opt;
|
||||||
|
|
||||||
/* Check that Redir header fits in packet. */
|
/* Check that Redir header fits in packet. */
|
||||||
@ -556,7 +554,6 @@ nd6_input(struct pbuf *p, struct netif *inp)
|
|||||||
{
|
{
|
||||||
struct icmp6_hdr *icmp6hdr; /* Packet too big message */
|
struct icmp6_hdr *icmp6hdr; /* Packet too big message */
|
||||||
struct ip6_hdr * ip6hdr; /* IPv6 header of the packet which caused the error */
|
struct ip6_hdr * ip6hdr; /* IPv6 header of the packet which caused the error */
|
||||||
s8_t i;
|
|
||||||
|
|
||||||
/* Check that ICMPv6 header + IPv6 header fit in payload */
|
/* Check that ICMPv6 header + IPv6 header fit in payload */
|
||||||
if (p->len < (sizeof(struct icmp6_hdr) + IP6_HLEN)) {
|
if (p->len < (sizeof(struct icmp6_hdr) + IP6_HLEN)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user