mirror of https://gitee.com/openkylin/libvirt.git
lxc: Use VIR_AUTOPTR for @veths in virLXCProcessStart
Now that we have VIR_AUTOPTR and that @veths is a string list we can use VIR_AUTOPTR to free it automagically. Signed-off-by: Michal Privoznik <mprivozn@redhat.com> Reviewed-by: Erik Skultety <eskultet@redhat.com>
This commit is contained in:
parent
3211936b34
commit
06b90ed407
|
@ -1181,7 +1181,7 @@ int virLXCProcessStart(virConnectPtr conn,
|
|||
size_t i;
|
||||
char *logfile = NULL;
|
||||
int logfd = -1;
|
||||
char **veths = NULL;
|
||||
VIR_AUTOPTR(virString) veths = NULL;
|
||||
int handshakefds[2] = { -1, -1 };
|
||||
off_t pos = -1;
|
||||
char ebuf[1024];
|
||||
|
@ -1555,7 +1555,6 @@ int virLXCProcessStart(virConnectPtr conn,
|
|||
virLXCProcessStop(driver, vm, VIR_DOMAIN_SHUTOFF_FAILED);
|
||||
}
|
||||
virCommandFree(cmd);
|
||||
virStringListFree(veths);
|
||||
for (i = 0; i < nttyFDs; i++)
|
||||
VIR_FORCE_CLOSE(ttyFDs[i]);
|
||||
VIR_FREE(ttyFDs);
|
||||
|
|
Loading…
Reference in New Issue