search for: xen_vif_record_free

Displaying 1 result from an estimated 1 matches for "xen_vif_record_free".

2016 Jul 31
1
Some question about code of xenapi
...VM information from XML so I diving into the souce and found it always fails at network creating, and the code in libvirt-1.3.5\src\xenapi\xenapi_utils.c, line 437 is following: xen_vif_create(session, &vif, vif_record); if (!vif) { xen_vif_free(vif); xen_vif_record_free(vif_record); xen_network_record_free(net_rec); xen_network_set_free(net_set); return 0; } xen_vif_record_free(vif_record); xen_network_record_free(net_rec); ... ... return -1; should this if be if (vif) {...}, if the vif i...