Fix comparison which could lead to segfault in std::sort

This commit is contained in:
Marcus Holland-Moritz 2020-12-15 14:16:26 +01:00
parent 64bb35dbd3
commit f75e7db150

View File

@ -307,7 +307,7 @@ void inode_manager_<LoggerPolicy>::presort_index(
if (na > nb) {
return true;
} else if (na > nb) {
} else if (na < nb) {
return false;
}