mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 09:21:26 +03:00
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);
|