mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-03-20 06:50:22 +03:00
xm_internal.c: remove two ret=... dead stores
* src/xm_internal.c (xenXMDomainCreate): Remove dead stores.
This commit is contained in:
parent
577ab7bae0
commit
bc8bcdcb24
@ -1851,10 +1851,10 @@ int xenXMDomainCreate(virDomainPtr domain) {
|
||||
goto error;
|
||||
domain->id = ret;
|
||||
|
||||
if ((ret = xend_wait_for_devices(domain->conn, domain->name)) < 0)
|
||||
if (xend_wait_for_devices(domain->conn, domain->name) < 0)
|
||||
goto error;
|
||||
|
||||
if ((ret = xenDaemonDomainResume(domain)) < 0)
|
||||
if (xenDaemonDomainResume(domain) < 0)
|
||||
goto error;
|
||||
|
||||
xenUnifiedUnlock(priv);
|
||||
|
Loading…
x
Reference in New Issue
Block a user