mirror of https://gitee.com/openkylin/systemd.git
28 lines
317 B
Plaintext
28 lines
317 B
Plaintext
|
@@
|
||
|
expression p;
|
||
|
@@
|
||
|
- if (p) {
|
||
|
- fclose(p);
|
||
|
- p = NULL;
|
||
|
- }
|
||
|
+ p = safe_fclose(p);
|
||
|
@@
|
||
|
expression p;
|
||
|
@@
|
||
|
- if (p)
|
||
|
- fclose(p);
|
||
|
- p = NULL;
|
||
|
+ p = safe_fclose(p);
|
||
|
@@
|
||
|
expression p;
|
||
|
@@
|
||
|
- fclose(p);
|
||
|
- p = NULL;
|
||
|
+ p = safe_fclose(p);
|
||
|
@@
|
||
|
expression p;
|
||
|
@@
|
||
|
- if (p)
|
||
|
- fclose(p);
|
||
|
+ safe_fclose(p);
|