mirror of https://gitee.com/openkylin/systemd.git
29 lines
382 B
Plaintext
29 lines
382 B
Plaintext
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
@@
|
|
expression p;
|
|
@@
|
|
- if (p) {
|
|
- closedir(p);
|
|
- p = NULL;
|
|
- }
|
|
+ p = safe_closedir(p);
|
|
@@
|
|
expression p;
|
|
@@
|
|
- if (p)
|
|
- closedir(p);
|
|
- p = NULL;
|
|
+ p = safe_closedir(p);
|
|
@@
|
|
expression p;
|
|
@@
|
|
- closedir(p);
|
|
- p = NULL;
|
|
+ p = safe_closedir(p);
|
|
@@
|
|
expression p;
|
|
@@
|
|
- if (p)
|
|
- closedir(p);
|
|
+ safe_closedir(p);
|