mirror of
https://github.com/systemd/systemd
synced 2024-11-05 18:25:39 +00: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.
6 lines
59 B
Text
6 lines
59 B
Text
@@
|
|
expression p;
|
|
@@
|
|
- free(p);
|
|
- p = NULL;
|
|
+ p = mfree(p);
|