* ./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:
parent
4f0803096b
commit
7e8bf7ef0b
|
@ -259,7 +259,7 @@ namespace {
|
||||||
|
|
||||||
inline Interval Cs1Candidate::getConflict ( size_t i )
|
inline Interval Cs1Candidate::getConflict ( size_t i )
|
||||||
{
|
{
|
||||||
if (i > _conflicts.size()) return Interval();
|
if (i >= _conflicts.size()) return Interval();
|
||||||
return _conflicts[i];
|
return _conflicts[i];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue