public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* PATCH:  Fix poor pointer math in devinet_sysctl_register
@ 2005-11-16 23:23 Jordan Crouse
  2005-11-17  6:14 ` Andrew Morton
  2005-11-17 10:53 ` Mikael Pettersson
  0 siblings, 2 replies; 5+ messages in thread
From: Jordan Crouse @ 2005-11-16 23:23 UTC (permalink / raw)
  To: linux-kernel

This patch fixes pointer math that under certain circumstances, results
in really bad pointers. This was encountered on a system compiled for i486, so
other compilers may differ, but I don't think it hurts anyone.

Signed-off-by: Jordan Crouse <jordan.crouse@amd.com>
---

 net/ipv4/devinet.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/net/ipv4/devinet.c b/net/ipv4/devinet.c
index 4ec4b2c..7585fce 100644
--- a/net/ipv4/devinet.c
+++ b/net/ipv4/devinet.c
@@ -1454,7 +1454,7 @@ static void devinet_sysctl_register(stru
 		return;
 	memcpy(t, &devinet_sysctl, sizeof(*t));
 	for (i = 0; i < ARRAY_SIZE(t->devinet_vars) - 1; i++) {
-		t->devinet_vars[i].data += (char *)p - (char *)&ipv4_devconf;
+		t->devinet_vars[i].data += (int)((char *)p - (char *)&ipv4_devconf);
 		t->devinet_vars[i].de = NULL;
 	}
 


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2005-11-17 15:00 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-11-16 23:23 PATCH: Fix poor pointer math in devinet_sysctl_register Jordan Crouse
2005-11-17  6:14 ` Andrew Morton
2005-11-17  7:13   ` David S. Miller
2005-11-17 10:53 ` Mikael Pettersson
2005-11-17 15:04   ` Jordan Crouse

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox