Michael Kay - 2003-03-24

Logged In: YES
user_id=251681

Source code fixed.

Line 181 in SortedIterator.java was:

return (nodeKeys[b1+i]==null ? 0 : -1);

should be:

comp = (nodeKeys[b1+i]==null ? 0 : -1);

In fact the problem is more severe that originally
described; if one sort key is null for both items, then
subsequent sort keys are not being examined.

MK