mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
Add spam length to data length in comparison against max size
This commit is contained in:
parent
9e3d5d6488
commit
ff7b4f8418
|
@ -33,7 +33,7 @@ uint8_t self_public_key[crypto_box_PUBLICKEYBYTES];
|
||||||
return the number of peers it was routed through if it did not send it directly.*/
|
return the number of peers it was routed through if it did not send it directly.*/
|
||||||
int send_friendrequest(uint8_t * public_key, uint32_t nospam_num, uint8_t * data, uint32_t length)
|
int send_friendrequest(uint8_t * public_key, uint32_t nospam_num, uint8_t * data, uint32_t length)
|
||||||
{
|
{
|
||||||
if(length - sizeof(nospam_num) > MAX_DATA_SIZE)
|
if(length + sizeof(nospam_num) > MAX_DATA_SIZE)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
uint8_t temp[MAX_DATA_SIZE];
|
uint8_t temp[MAX_DATA_SIZE];
|
||||||
|
|
Loading…
Reference in New Issue
Block a user