mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-03-07 17:28:15 +00:00
rpc: Use g_autofree in virNetClientNewLibssh()
Signed-off-by: Fabiano Fidêncio <fidencio@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
2619aaaa3a
commit
998cd53722
@ -545,13 +545,13 @@ virNetClientPtr virNetClientNewLibssh(const char *host,
|
|||||||
virNetClientPtr ret = NULL;
|
virNetClientPtr ret = NULL;
|
||||||
|
|
||||||
virBuffer buf = VIR_BUFFER_INITIALIZER;
|
virBuffer buf = VIR_BUFFER_INITIALIZER;
|
||||||
char *nc = NULL;
|
g_autofree char *nc = NULL;
|
||||||
char *command = NULL;
|
g_autofree char *command = NULL;
|
||||||
|
|
||||||
char *homedir = NULL;
|
g_autofree char *homedir = NULL;
|
||||||
char *confdir = NULL;
|
g_autofree char *confdir = NULL;
|
||||||
char *knownhosts = NULL;
|
g_autofree char *knownhosts = NULL;
|
||||||
char *privkey = NULL;
|
g_autofree char *privkey = NULL;
|
||||||
|
|
||||||
/* Use default paths for known hosts an public keys if not provided */
|
/* Use default paths for known hosts an public keys if not provided */
|
||||||
if (knownHostsPath) {
|
if (knownHostsPath) {
|
||||||
@ -609,12 +609,6 @@ virNetClientPtr virNetClientNewLibssh(const char *host,
|
|||||||
goto cleanup;
|
goto cleanup;
|
||||||
|
|
||||||
cleanup:
|
cleanup:
|
||||||
VIR_FREE(command);
|
|
||||||
VIR_FREE(privkey);
|
|
||||||
VIR_FREE(knownhosts);
|
|
||||||
VIR_FREE(homedir);
|
|
||||||
VIR_FREE(confdir);
|
|
||||||
VIR_FREE(nc);
|
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
no_memory:
|
no_memory:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user