mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 17:51:22 +03:00
28 lines
333 B
Plaintext
28 lines
333 B
Plaintext
@@
|
|
expression p;
|
|
@@
|
|
- if (p) {
|
|
- closedir(p);
|
|
- p = NULL;
|
|
- }
|
|
+ p = safe_closedir(p);
|
|
@@
|
|
expression p;
|
|
@@
|
|
- if (p)
|
|
- closedir(p);
|
|
- p = NULL;
|
|
+ p = safe_closedir(p);
|
|
@@
|
|
expression p;
|
|
@@
|
|
- closedir(p);
|
|
- p = NULL;
|
|
+ p = safe_closedir(p);
|
|
@@
|
|
expression p;
|
|
@@
|
|
- if (p)
|
|
- closedir(p);
|
|
+ safe_closedir(p);
|