mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-20 11:35:19 +00:00
Don't free NULL network in cmdNetworkUpdate
If the network has not been found, virNetworkFree(NULL) was called, resulting in an extra error: error: invalid network pointer in virNetworkFree https://bugzilla.redhat.com/show_bug.cgi?id=1001094
This commit is contained in:
parent
8a38db0dd9
commit
784cca89c5
@ -918,7 +918,7 @@ cmdNetworkUpdate(vshControl *ctl, const vshCmd *cmd)
|
|||||||
const char *affected;
|
const char *affected;
|
||||||
|
|
||||||
if (!(network = vshCommandOptNetwork(ctl, cmd, NULL)))
|
if (!(network = vshCommandOptNetwork(ctl, cmd, NULL)))
|
||||||
goto cleanup;
|
return false;
|
||||||
|
|
||||||
if (vshCommandOptStringReq(ctl, cmd, "command", &commandStr) < 0)
|
if (vshCommandOptStringReq(ctl, cmd, "command", &commandStr) < 0)
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user