commit | ecf55968a100dfb9eed8ba86f2dd67abb42fb943 | [log] [tgz] |
---|---|---|
author | Tim Duesterhus <tim@bastelstu.be> | Wed Sep 15 13:58:47 2021 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Fri Sep 17 17:22:05 2021 +0200 |
tree | c006cc23fd44a92e7ec479ba3e5e6bf35d36784e | |
parent | ec4a8754da59e00b6313dbc10a081badfb37bf33 [diff] |
DEV: coccinelle: Add xalloc_cast.cocci This remove's C++ style casts from the return value of malloc/calloc. see 403fd722ace1d98d3cfe17bbee1382bf58040466
diff --git a/dev/coccinelle/xalloc_cast.cocci b/dev/coccinelle/xalloc_cast.cocci new file mode 100644 index 0000000..75baa00 --- /dev/null +++ b/dev/coccinelle/xalloc_cast.cocci
@@ -0,0 +1,11 @@ +@@ +type T; +@@ + +- (T*) +( +malloc +| +calloc +) + (...)