mirror of https://gitee.com/openkylin/systemd.git
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);
|