mirror of https://gitee.com/openkylin/libvirt.git
virfilemock: Init symbols in canonicalize_file_name()
If a program that is using this mock calls canonicalize_file_name() as the very first function then it will face SIGSEGV because real_canonicalize_file_name is uninitialized. Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
1ec3e39742
commit
dd5ae5f240
|
@ -177,6 +177,9 @@ statfs(const char *path, struct statfs *buf)
|
|||
char *
|
||||
canonicalize_file_name(const char *path)
|
||||
{
|
||||
|
||||
init_syms();
|
||||
|
||||
if (getenv("LIBVIRT_MTAB")) {
|
||||
const char *p;
|
||||
char *ret;
|
||||
|
|
Loading…
Reference in New Issue