* ./kite:

- Bug: In RoutingEvent, Cs1Candidate::getConflicts() uses of out of bound index.
        Strangely shows only under recent distributions (Fedora 13).
This commit is contained in:
Jean-Paul Chaput 2010-06-01 21:35:20 +00:00
parent 4f0803096b
commit 7e8bf7ef0b
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ namespace {
inline Interval Cs1Candidate::getConflict ( size_t i )
{
if (i > _conflicts.size()) return Interval();
if (i >= _conflicts.size()) return Interval();
return _conflicts[i];
}