Eric Sesterhenn wrote:
hi,
this fixes Coverity Bugs #21 and #22. In both cases the
do { ... } while (result != 6 || result == 0x0E) just
This is completely wrong, and should be fixed too.
Either
do { ... } while (result != 6)
is correct, or this is the result of a thinko, and it should be
do { ... } while (result != 6 && result != 0x0E)
in which case your patch is incorrect.
finishes for result == 6, so the if(result != 6) doesnt
make much sense.
Unless its presence is an indication of faulty logic in the while clause
Daniel K.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[Index of Archives]
[Kernel Newbies]
[Netfilter]
[Bugtraq]
[Photo]
[Stuff]
[Gimp]
[Yosemite News]
[MIPS Linux]
[ARM Linux]
[Linux Security]
[Linux RAID]
[Video 4 Linux]
[Linux for the blind]
[Linux Resources]