Skip to content

Commit

Permalink
Fix regression in leveldb backend
Browse files Browse the repository at this point in the history
  • Loading branch information
sapier authored and sapier committed Jul 6, 2014
1 parent 96f285f commit e14c4cd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/database-leveldb.cpp
Expand Up @@ -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;

Expand All @@ -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
*/
Expand Down

0 comments on commit e14c4cd

Please sign in to comment.