ringct: add missing size check for ecdhInfo

pull/95/head
moneromooo-monero 8 years ago
parent 229968eafc
commit 359f46901e
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -536,6 +536,7 @@ namespace rct {
// must know the destination private key to find the correct amount, else will return a random number
bool verRct(const rctSig & rv) {
CHECK_AND_ASSERT_MES(rv.outPk.size() == rv.rangeSigs.size(), false, "Mismatched sizes of rv.outPk and rv.rangeSigs");
CHECK_AND_ASSERT_MES(rv.outPk.size() == rv.ecdhInfo.size(), false, "Mismatched sizes of rv.outPk and rv.ecdhInfo");
// some rct ops can throw
try

Loading…
Cancel
Save