Revision ff01b9163655ace76b29b7ff2f56b25c32f795da authored by Roel Kluin on 03 February 2009, 07:19:50 UTC, committed by David S. Miller on 03 February 2009, 07:19:50 UTC
while (limit--)
	if (test())
		break;

if (limit <= 0)
	goto test_failed;

In the last iteration, limit is decremented after the test to 0.
If just thereafter test() succeeds and a break occurs, the goto
still occurs because limit is 0.

Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent 46578a6
History
File Mode Size
00-INDEX -rw-r--r-- 409 bytes
README -rw-r--r-- 2.6 KB
abi.txt -rw-r--r-- 1.4 KB
ctl_unnumbered.txt -rw-r--r-- 962 bytes
fs.txt -rw-r--r-- 6.2 KB
kernel.txt -rw-r--r-- 12.4 KB
sunrpc.txt -rw-r--r-- 784 bytes
vm.txt -rw-r--r-- 21.2 KB

README

back to top