1:255.13-alt1
[systemd_ALT.git] / coccinelle / safe_fclose.cocci
blobfc1b584d88f3b38047ea3b81c1a82b1bd50161ab
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2 @@
3 expression p;
4 @@
5 - if (p) {
6 -         fclose(p);
7 -         p = NULL;
8 - }
9 + p = safe_fclose(p);
11 expression p;
13 - if (p)
14 -         fclose(p);
15 - p = NULL;
16 + p = safe_fclose(p);
18 expression p;
20 - fclose(p);
21 - p = NULL;
22 + p = safe_fclose(p);
24 expression p;
26 - if (p)
27 -         fclose(p);
28 + safe_fclose(p);