same procedure, simpler code
This commit is contained in:
Родитель
8a335ee7fd
Коммит
5be7d88b34
|
@ -975,13 +975,7 @@ static CURLcode
|
|||
static
|
||||
send_buffer *add_buffer_init(void)
|
||||
{
|
||||
send_buffer *blonk;
|
||||
blonk = malloc(sizeof(send_buffer));
|
||||
if(blonk) {
|
||||
memset(blonk, 0, sizeof(send_buffer));
|
||||
return blonk;
|
||||
}
|
||||
return NULL; /* failed, go home */
|
||||
return calloc(sizeof(send_buffer), 1);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Загрузка…
Ссылка в новой задаче