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