summaryrefslogtreecommitdiffstats
path: root/tools/coccinelle/xcalloc-xmalloc.cocci
blob: 2a091d4cd983c038be0b7fd0ff5e7d08d0a4db4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// No need checking against NULL for XMALLOC/XCALLOC.
// If that happens, we have more problems with memory.

@@
type T;
T *ptr;
@@

ptr =
(
XCALLOC(...)
|
XMALLOC(...)
)
...
- if (ptr == NULL)
- return ...;