0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2025-01-16 01:26:58 +01:00

ircd::db: Fix cell::load seek validation.

This commit is contained in:
Jason Volk 2019-01-15 19:03:03 -08:00
parent 1e7325eb40
commit 2171cc23e8

View file

@ -8976,7 +8976,10 @@ ircd::db::cell::load(const string_view &index,
}
database::column &c(this->c);
return seek(c, index, opts, this->it);
if(!seek(c, index, opts, this->it))
return false;
return valid(index);
}
ircd::db::cell &