* redundant tests in hashes.c
@ 2003-02-26 2:52 rwhron
0 siblings, 0 replies; only message in thread
From: rwhron @ 2003-02-26 2:52 UTC (permalink / raw)
To: reiserfs-list
There are some BUG tests in hashes.c that will never be true.
--- linux-2.5.63/fs/reiserfs/hashes.c.orig 2003-02-14 22:07:21.000000000 -0500
+++ linux-2.5.63/fs/reiserfs/hashes.c 2003-02-25 21:47:46.000000000 -0500
@@ -90,10 +90,6 @@
if (len >= 12)
{
- //assert(len < 16);
- if (len >= 16)
- BUG();
-
a = (u32)msg[ 0] |
(u32)msg[ 1] << 8 |
(u32)msg[ 2] << 16|
@@ -116,9 +112,6 @@
}
else if (len >= 8)
{
- //assert(len < 12);
- if (len >= 12)
- BUG();
a = (u32)msg[ 0] |
(u32)msg[ 1] << 8 |
(u32)msg[ 2] << 16|
@@ -137,9 +130,6 @@
}
else if (len >= 4)
{
- //assert(len < 8);
- if (len >= 8)
- BUG();
a = (u32)msg[ 0] |
(u32)msg[ 1] << 8 |
(u32)msg[ 2] << 16|
@@ -154,9 +144,6 @@
}
else
{
- //assert(len < 4);
- if (len >= 4)
- BUG();
a = b = c = d = pad;
for(i = 0; i < len; i++)
{
--
Randy Hron
http://home.earthlink.net/~rwhron/kernel/bigbox.html
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2003-02-26 2:52 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-02-26 2:52 redundant tests in hashes.c rwhron
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.