repo.or.cz
/
systemd_ALT.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
1:255.16-alt1
[systemd_ALT.git]
/
coccinelle
/
mfree_return.cocci
blob
c2c4cb3209e8241a83ca7e29333db7ab2845b397
1
/* SPDX-License-Identifier: LGPL-2.1-or-later */
2
@@
3
/* Avoid running this transformation on the mfree function itself */
4
position p : script:python() { p[0].current_element != "mfree" };
5
expression e;
6
@@
7
- free@p(e);
8
- return NULL;
9
+ return mfree(e);