mirror of
https://github.com/systemd/systemd
synced 2024-11-05 18:25:39 +00:00
7f6e12b033
Replace this: if (fd >= 0) safe_close(fd); by this: safe_close(fd);
7 lines
88 B
Text
7 lines
88 B
Text
@@
|
|
expression fd;
|
|
@@
|
|
- if (fd >= 0) {
|
|
- fd = safe_close(fd);
|
|
- }
|
|
+ fd = safe_close(fd);
|