Merge pull request #6556

5ed37ba serialization: fix bad rapidjson api usage (moneromooo-monero)
This commit is contained in:
luigi1111 2020-06-08 14:18:09 -05:00
commit 445f74c71a
No known key found for this signature in database
GPG key ID: F4ACA0183641E010

View file

@ -120,7 +120,7 @@ void read_hex(const rapidjson::Value& val, epee::span<std::uint8_t> dest)
throw WRONG_TYPE("string");
}
if (!epee::from_hex::to_buffer(dest, {val.GetString(), val.Size()}))
if (!epee::from_hex::to_buffer(dest, {val.GetString(), val.GetStringLength()}))
{
throw BAD_INPUT();
}