mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-24 22:55:23 +00:00
Fix leak build config file path
* src/libvirt.c: Free user directory path
This commit is contained in:
parent
a8bb75a3e6
commit
87e8ff1be1
@ -974,8 +974,11 @@ virConnectConfigFile(void)
|
||||
goto error;
|
||||
|
||||
if (virAsprintf(&path, "%s/.libvirt/libvirt.conf",
|
||||
userdir) < 0)
|
||||
userdir) < 0) {
|
||||
VIR_FREE(userdir);
|
||||
goto no_memory;
|
||||
}
|
||||
VIR_FREE(userdir);
|
||||
}
|
||||
|
||||
return path;
|
||||
|
Loading…
Reference in New Issue
Block a user