Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | cocci: merge mfree.cocci and mfree_return.cocci (#30838) | AtariDreams | 2024-01-09 | 1 | -0/+29 |
| | | | It makes sense that these should be one file instead of two, as they both involve mfree() | ||||
* | licensing: add spdx to our .cocci files | Zbigniew Jędrzejewski-Szmek | 2021-10-01 | 1 | -0/+1 |
| | | | | | Since those are chunks of code based on our codebase, it's easiest to use the same license. | ||||
* | tree-wide: use coccinelle to patch a lot of code to use mfree() | Lennart Poettering | 2015-09-09 | 1 | -0/+6 |
This replaces this: free(p); p = NULL; by this: p = mfree(p); Change generated using coccinelle. Semantic patch is added to the sources. |