Changed a "for" loop into a "do ... while" loop.

This commit is contained in:
Wayne Davison
2004-07-04 08:07:23 +00:00
parent 5e252dea4b
commit 066a844c4e

View File

@@ -188,7 +188,7 @@ static void hash_search(int f,struct sum_struct *s,
sum = (s1 & 0xffff) | (s2 << 16);
tag_hits++;
for (; j < s->count && targets[j].t == t; j++) {
do {
unsigned int l;
size_t i = targets[j].i;
@@ -235,7 +235,7 @@ static void hash_search(int f,struct sum_struct *s,
s2 = sum >> 16;
matches++;
break;
}
} while (++j < s->count && targets[j].t == t);
null_tag:
/* Trim off the first byte from the checksum */