connect: remove margin from eyeballer alloc

Presumably leftovers from debugging

Closes #12647
This commit is contained in:
Daniel Stenberg 2024-01-07 12:06:12 +01:00
parent 1058483615
commit e556470c23
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -389,7 +389,7 @@ static CURLcode eyeballer_new(struct eyeballer **pballer,
struct eyeballer *baller;
*pballer = NULL;
baller = calloc(1, sizeof(*baller) + 1000);
baller = calloc(1, sizeof(*baller));
if(!baller)
return CURLE_OUT_OF_MEMORY;