mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 00:51:24 +03:00
a1e58e8ee1
This replaces this: free(p); p = NULL; by this: p = mfree(p); Change generated using coccinelle. Semantic patch is added to the sources.
7 lines
59 B
Plaintext
7 lines
59 B
Plaintext
@@
|
|
expression p;
|
|
@@
|
|
- free(p);
|
|
- p = NULL;
|
|
+ p = mfree(p);
|