mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-27 22:45:52 +00:00
Don't use 'front' on a string.
This commit is contained in:
@@ -114,7 +114,7 @@ HashedObject::pointer HashedObjectStore::retrieveLevelDB(const uint256& hash)
|
|||||||
return obj;
|
return obj;
|
||||||
}
|
}
|
||||||
|
|
||||||
const unsigned char* bufPtr = reinterpret_cast<const unsigned char*>(&sData.front());
|
const unsigned char* bufPtr = reinterpret_cast<const unsigned char*>(&sData[0]);
|
||||||
uint32 index = htonl(*reinterpret_cast<const uint32*>(bufPtr));
|
uint32 index = htonl(*reinterpret_cast<const uint32*>(bufPtr));
|
||||||
int htype = bufPtr[8];
|
int htype = bufPtr[8];
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user