Fix regression in leveldb backend

This commit is contained in:
sapier 2014-07-07 00:06:06 +02:00
parent 96f285f71e
commit e14c4cdd4c
1 changed files with 3 additions and 3 deletions

View File

@ -100,8 +100,7 @@ MapBlock* Database_LevelDB::loadBlock(v3s16 blockpos)
std::string datastr;
leveldb::Status status = m_database->Get(leveldb::ReadOptions(),
i64tos(getBlockAsInteger(blockpos)), &datastr);
ENSURE_STATUS_OK(status);
if (datastr.length() == 0) {
if (datastr.length() == 0 && status.ok()) {
errorstream << "Blank block data in database (datastr.length() == 0) ("
<< blockpos.X << "," << blockpos.Y << "," << blockpos.Z << ")" << std::endl;
@ -112,7 +111,8 @@ MapBlock* Database_LevelDB::loadBlock(v3s16 blockpos)
throw SerializationError("Blank block data in database");
}
return NULL;
} else {
}
if (status.ok()) {
/*
Make sure sector is loaded
*/