mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 00:51:24 +03:00
74ca738f6a
Adds a coccinelle script to port things over automatically.
28 lines
317 B
Plaintext
28 lines
317 B
Plaintext
@@
|
|
expression p;
|
|
@@
|
|
- if (p) {
|
|
- fclose(p);
|
|
- p = NULL;
|
|
- }
|
|
+ p = safe_fclose(p);
|
|
@@
|
|
expression p;
|
|
@@
|
|
- if (p)
|
|
- fclose(p);
|
|
- p = NULL;
|
|
+ p = safe_fclose(p);
|
|
@@
|
|
expression p;
|
|
@@
|
|
- fclose(p);
|
|
- p = NULL;
|
|
+ p = safe_fclose(p);
|
|
@@
|
|
expression p;
|
|
@@
|
|
- if (p)
|
|
- fclose(p);
|
|
+ safe_fclose(p);
|