You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Basically if the content of n_->keylenx_ changes between the check and the n_->ksuf() call, the precondition check in ksuf() might fail because the precondition check loads the latest value. Is this a bug?
The text was updated successfully, but these errors were encountered:
How about change
"keylen = ka.assign_store_suffix(n_->ksuf(kp));"
into
"keylen = ka.assign_store_suffix((n_->ksuf_ ? n_->ksuf_->get(kp) : n_->iksuf_[0].get(kp)));"
?
The following two lines of code in scan seems to be giving us issues:
masstree-beta/masstree_scan.hh
Lines 270 to 271 in 6b6c118
Basically if the content of
n_->keylenx_
changes between the check and then_->ksuf()
call, the precondition check inksuf()
might fail because the precondition check loads the latest value. Is this a bug?The text was updated successfully, but these errors were encountered: