mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
ringct: prevent a potential very large allocation
Reported by QuarksLab.
This commit is contained in:
parent
a4317e61b5
commit
61632dc166
@ -317,9 +317,9 @@ namespace rct {
|
|||||||
ar.begin_array();
|
ar.begin_array();
|
||||||
uint32_t nbp = bulletproofs.size();
|
uint32_t nbp = bulletproofs.size();
|
||||||
FIELD(nbp)
|
FIELD(nbp)
|
||||||
PREPARE_CUSTOM_VECTOR_SERIALIZATION(nbp, bulletproofs);
|
if (nbp > outputs)
|
||||||
if (bulletproofs.size() > outputs)
|
|
||||||
return false;
|
return false;
|
||||||
|
PREPARE_CUSTOM_VECTOR_SERIALIZATION(nbp, bulletproofs);
|
||||||
for (size_t i = 0; i < nbp; ++i)
|
for (size_t i = 0; i < nbp; ++i)
|
||||||
{
|
{
|
||||||
FIELDS(bulletproofs[i])
|
FIELDS(bulletproofs[i])
|
||||||
|
Loading…
Reference in New Issue
Block a user