From: Eric Sesterhenn <snakebyte@gmx.de>
To: linux-kernel@vger.kernel.org
Cc: mshefty@ichips.intel.com
Subject: [Patch] Array overrun in drivers/infiniband/core/cma.c
Date: Wed, 21 Jun 2006 20:56:26 +0200 [thread overview]
Message-ID: <1150916186.23613.1.camel@alice> (raw)
hi,
this was spotted by coverity #id 1300. Since
the array has only four elements, we should
just use those four.
Patch is against todays git tree.
Signed-off-by: Eric Sesterhenn <snakebyte@gmx.de>
--- linux-2.6/drivers/infiniband/core/cma.c.orig 2006-06-21 20:54:10.000000000 +0200
+++ linux-2.6/drivers/infiniband/core/cma.c 2006-06-21 20:54:22.000000000 +0200
@@ -476,7 +476,7 @@ static inline int cma_zero_addr(struct s
else {
ip6 = &((struct sockaddr_in6 *) addr)->sin6_addr;
return (ip6->s6_addr32[0] | ip6->s6_addr32[1] |
- ip6->s6_addr32[3] | ip6->s6_addr32[4]) == 0;
+ ip6->s6_addr32[2] | ip6->s6_addr32[3]) == 0;
}
}
next reply other threads:[~2006-06-21 18:56 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-06-21 18:56 Eric Sesterhenn [this message]
2006-06-26 18:24 ` [Patch] Array overrun in drivers/infiniband/core/cma.c Sean Hefty
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-all 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=1150916186.23613.1.camel@alice \
--to=snakebyte@gmx.de \
--cc=linux-kernel@vger.kernel.org \
--cc=mshefty@ichips.intel.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.