repo.or.cz
/
systemd_ALT.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
1:255.13-alt1
[systemd_ALT.git]
/
coccinelle
/
safe_close.cocci
blob
49254b6fff5e1c5ad0b52093203ae5196daf86bc
1
/* SPDX-License-Identifier: LGPL-2.1-or-later */
2
@@
3
expression fd;
4
@@
5
- close(fd);
6
- fd = -EBADF;
7
+ fd = safe_close(fd);
8
@@
9
expression fd;
10
@@
11
- close_nointr(fd);
12
- fd = -EBADF;
13
+ fd = safe_close(fd);
14
@@
15
expression fd;
16
@@
17
- safe_close(fd);
18
- fd = -EBADF;
19
+ fd = safe_close(fd);