mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-05 04:41:20 +00:00
030ce43b49
commit f1fe9671e
was supposed to make sure we use files.h
macros to avoid double close, but it didn't work.
Meanwhile, virCommand is vastly superior to system(), fork(),
and popen() (also to virExec, but we haven't completed that
conversion), so enforce that, too.
* cfg.mk (sc_prohibit_close): Fix typo that excluded close, and
add pclose.
(sc_prohibit_fork_wrappers): New rule, for fork, system, and popen.
* .x-sc_prohibit_close: More exemptions.
* .x-sc_prohibit_fork_wrappers: New file.
* Makefile.am (syntax_check_exceptions): Ship new file.
* src/datatypes.c (virReleaseConnect): Tweak comment to avoid
false positive.
* src/util/files.h (VIR_CLOSE): Likewise.
9 lines
191 B
Plaintext
9 lines
191 B
Plaintext
^docs/.*
|
|
^HACKING$
|
|
^src/util/util\.c$
|
|
^tests/testutils\.c$
|
|
# Files that we may want to convert over to virCommand someday...
|
|
^daemon/libvirtd\.c$
|
|
^src/libvirt\.c$
|
|
^src/lxc/lxc_controller\.c$
|