diff options
author | Junio C Hamano <gitster@pobox.com> | 2021-03-19 15:25:38 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-03-19 15:25:38 -0700 |
commit | 92ccd7b7529a852583c5033ba28b4414cd2f7654 (patch) | |
tree | bce1548bcd2cd806a4524b812fb56f19b397b7d2 /contrib | |
parent | Merge branch 'rs/avoid-null-statement-after-macro-call' (diff) | |
parent | cocci: allow xcalloc(1, size) (diff) | |
download | tgif-92ccd7b7529a852583c5033ba28b4414cd2f7654.tar.xz |
Merge branch 'rs/calloc-array'
CALLOC_ARRAY() macro replaces many uses of xcalloc().
* rs/calloc-array:
cocci: allow xcalloc(1, size)
use CALLOC_ARRAY
git-compat-util.h: drop trailing semicolon from macro definition
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/coccinelle/array.cocci | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/contrib/coccinelle/array.cocci b/contrib/coccinelle/array.cocci index 46b8d2ee11..9a4f00cb1b 100644 --- a/contrib/coccinelle/array.cocci +++ b/contrib/coccinelle/array.cocci @@ -88,3 +88,11 @@ expression n; @@ - ptr = xmalloc((n) * sizeof(T)); + ALLOC_ARRAY(ptr, n); + +@@ +type T; +T *ptr; +expression n != 1; +@@ +- ptr = xcalloc(n, \( sizeof(*ptr) \| sizeof(T) \) ) ++ CALLOC_ARRAY(ptr, n) |