mirror of
https://github.com/systemd/systemd.git
synced 2024-11-02 02:21:44 +03:00
28 lines
321 B
Plaintext
28 lines
321 B
Plaintext
|
@@
|
||
|
expression p;
|
||
|
@@
|
||
|
- strv_free(p);
|
||
|
- p = NULL;
|
||
|
+ p = strv_free(p);
|
||
|
@@
|
||
|
expression p;
|
||
|
@@
|
||
|
- if (p)
|
||
|
- strv_free(p);
|
||
|
- p = NULL;
|
||
|
+ p = strv_free(p);
|
||
|
@@
|
||
|
expression p;
|
||
|
@@
|
||
|
- if (p) {
|
||
|
- strv_free(p);
|
||
|
- p = NULL;
|
||
|
- }
|
||
|
+ p = strv_free(p);
|
||
|
@@
|
||
|
expression p;
|
||
|
@@
|
||
|
- if (p)
|
||
|
- strv_free(p);
|
||
|
+ strv_free(p);
|