Skip to content

Commit

Permalink
messed up endians
Browse files Browse the repository at this point in the history
  • Loading branch information
msotheeswaran-sc committed Oct 5, 2023
1 parent 756ab91 commit ae003aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/storage/rocksdb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ bool RocksDBStorageProvider::enumerate_hashslot(callback fn, unsigned int hashsl
for (it->Seek(prefix); it->Valid(); it->Next()) {
if (FInternalKey(it->key().data(), it->key().size()))
continue;
if ((unsigned int)*it->key().data() != hashslot)
if (*(unsigned int *)it->key().data() != hashslot)
break;
++count;
bool fContinue = fn(it->key().data()+sizeof(unsigned int), it->key().size()-sizeof(unsigned int), it->value().data(), it->value().size());
Expand Down

0 comments on commit ae003aa

Please sign in to comment.