This commit is contained in:
Daniel Stenberg 2008-12-20 22:47:49 +00:00
Родитель 8a335ee7fd
Коммит 5be7d88b34
1 изменённых файлов: 1 добавлений и 7 удалений

Просмотреть файл

@ -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);
}
/*