haproxy/dev/coccinelle/xalloc_cast.cocci
Tim Duesterhus ecf55968a1 DEV: coccinelle: Add xalloc_cast.cocci
This remove's C++ style casts from the return value of malloc/calloc.

see 403fd722ac
2021-09-17 17:22:05 +02:00

12 lines
50 B
Plaintext

@@
type T;
@@
- (T*)
(
malloc
|
calloc
)
(...)