1:255.16-alt1
[systemd_ALT.git] / coccinelle / mfree_return.cocci
blobc2c4cb3209e8241a83ca7e29333db7ab2845b397
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);