Fix potential segfault when calling next on DBIterator that is at the end of the range (#374)

master
wqfish 5 years ago committed by Oleksandr Anyshchenko
parent a01815d574
commit 04e75d6ae5
  1. 19
      src/db.rs

@ -595,6 +595,10 @@ impl<'a> Iterator for DBIterator<'a> {
type Item = KVBytes;
fn next(&mut self) -> Option<KVBytes> {
if !self.raw.valid() {
return None;
}
// Initial call to next() after seeking should not move the iterator
// or the first item will not be returned
if !self.just_seeked {
@ -2169,6 +2173,21 @@ fn iterator_test() {
assert!(DB::destroy(&opts, path).is_ok());
}
#[test]
fn iterator_test_past_end() {
let path = "_rust_rocksdb_iteratortest_past_end";
{
let db = DB::open_default(path).unwrap();
db.put(b"k1", b"v1111").unwrap();
let mut iter = db.iterator(IteratorMode::Start);
assert!(iter.next().is_some());
assert!(iter.next().is_none());
assert!(iter.next().is_none());
}
let opts = Options::default();
DB::destroy(&opts, path).unwrap();
}
#[test]
fn iterator_test_tailing() {
let path = "_rust_rocksdb_iteratortest_tailing";

Loading…
Cancel
Save