[libvirt] [PATCH 1/6] conf: net: Fix helper for applying new network definition

Peter Krempa pkrempa at redhat.com
Thu Oct 25 15:18:25 UTC 2012


When there's no new definition the helper overwrote the old one with
NULL.
---
 src/conf/network_conf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/conf/network_conf.c b/src/conf/network_conf.c
index 8976f2a..93d1b4c 100644
--- a/src/conf/network_conf.c
+++ b/src/conf/network_conf.c
@@ -359,7 +359,7 @@ virNetworkObjSetDefTransient(virNetworkObjPtr network, bool live)
 void
 virNetworkObjUnsetDefTransient(virNetworkObjPtr network)
 {
-    if (network->def) {
+    if (network->newDef) {
         virNetworkDefFree(network->def);
         network->def = network->newDef;
         network->newDef = NULL;
-- 
1.7.12.4




More information about the libvir-list mailing list