mirror of
https://github.com/git/git.git
synced 2026-04-12 01:40:10 +02:00
use CALLOC_ARRAY
Add and apply a semantic patch for converting code that open-codes CALLOC_ARRAY to use it instead. It shortens the code and infers the element size automatically. Signed-off-by: René Scharfe <l.s.r@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
f1121499e6
commit
ca56dadb4b
4
http.c
4
http.c
@@ -2324,7 +2324,7 @@ struct http_pack_request *new_direct_http_pack_request(
|
||||
off_t prev_posn = 0;
|
||||
struct http_pack_request *preq;
|
||||
|
||||
preq = xcalloc(1, sizeof(*preq));
|
||||
CALLOC_ARRAY(preq, 1);
|
||||
strbuf_init(&preq->tmpfile, 0);
|
||||
|
||||
preq->url = url;
|
||||
@@ -2419,7 +2419,7 @@ struct http_object_request *new_http_object_request(const char *base_url,
|
||||
off_t prev_posn = 0;
|
||||
struct http_object_request *freq;
|
||||
|
||||
freq = xcalloc(1, sizeof(*freq));
|
||||
CALLOC_ARRAY(freq, 1);
|
||||
strbuf_init(&freq->tmpfile, 0);
|
||||
oidcpy(&freq->oid, oid);
|
||||
freq->localfile = -1;
|
||||
|
||||
Reference in New Issue
Block a user