libraft icon indicating copy to clipboard operation
libraft copied to clipboard

C++ raft lib

Results 2 libraft issues
Sort by recently updated
recently updated
newest added

void unstableLog::slice(uint64_t lo, uint64_t hi, EntryVec *entries) { mustCheckOutOfBounds(lo, hi); entries->assign(entries_.begin() + (lo - offset_), entries_.begin() + (hi - offset_)); } 偏移值加上括号,不然可能会crash。 +hi 之后直接就越界了,哪有机会减去offset