mirror of
https://github.com/curl/curl.git
synced 2026-07-16 06:47:16 +03:00
connect: remove margin from eyeballer alloc
Presumably leftovers from debugging Closes #12647
This commit is contained in:
parent
1058483615
commit
e556470c23
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue