summaryrefslogtreecommitdiffstats
path: root/coccinelle/safe_close-no-if.cocci
blob: 881ce1fa0a84ab2f68147ccf88aba380664f81fb (plain)
1
2
3
4
5
6
7
8
/* SPDX-License-Identifier: LGPL-2.1-or-later */
@@
expression fd;
@@
- if (fd >= 0) {
- fd = safe_close(fd);
- }
+ fd = safe_close(fd);