mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 17:51:22 +03:00
66e405837b
Replace this: close(fd); fd = -1; write this: fd = safe_close(fd);
19 lines
216 B
Plaintext
19 lines
216 B
Plaintext
@@
|
|
expression fd;
|
|
@@
|
|
- close(fd);
|
|
- fd = -1;
|
|
+ fd = safe_close(fd);
|
|
@@
|
|
expression fd;
|
|
@@
|
|
- close_nointr(fd);
|
|
- fd = -1;
|
|
+ fd = safe_close(fd);
|
|
@@
|
|
expression fd;
|
|
@@
|
|
- safe_close(fd);
|
|
- fd = -1;
|
|
+ fd = safe_close(fd);
|