[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <4A37E715.4060504@gmail.com>
Date: Tue, 16 Jun 2009 20:40:21 +0200
From: Roel Kluin <roel.kluin@...il.com>
To: "David S. Miller" <davem@...emloft.net>
CC: netdev <netdev@...r.kernel.org>,
Andrew Morton <akpm@...ux-foundation.org>
Subject: [PATCH] ipv6: Keep index within tab_unreach[]
Ensure that index `code' remains within array tab_unreach[]
Signed-off-by: Roel Kluin <roel.kluin@...il.com>
---
diff --git a/net/ipv6/icmp.c b/net/ipv6/icmp.c
index 36dff88..8f850de 100644
--- a/net/ipv6/icmp.c
+++ b/net/ipv6/icmp.c
@@ -923,7 +923,7 @@ int icmpv6_err_convert(int type, int code, int *err)
switch (type) {
case ICMPV6_DEST_UNREACH:
fatal = 1;
- if (code <= ICMPV6_PORT_UNREACH) {
+ if (code <= ICMPV6_PORT_UNREACH && code >= 0) {
*err = tab_unreach[code].err;
fatal = tab_unreach[code].fatal;
}
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists