Loading lib/http.c +1 −7 Original line number Diff line number Diff line Loading @@ -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); } /* Loading Loading
lib/http.c +1 −7 Original line number Diff line number Diff line Loading @@ -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); } /* Loading