Endlosschleifenfix

This commit is contained in:
Enno Rehling 2004-01-25 10:00:31 +00:00
parent b5721e9a13
commit 039e239d35
1 changed files with 2 additions and 0 deletions

View File

@ -1013,11 +1013,13 @@ get_seen_interval(region ** first, region ** last)
first = r;
break;
}
r = r->next;
}
while (r!=NULL) {
if (find_seen(r)!=NULL) {
last = r;
}
r = r->next;
}
}