mirror of https://gitee.com/openkylin/libvirt.git
lxc: don't unlink(NULL) in main
* src/lxc_controller.c (main): Unlink sockpath only if it's non-NULL.
This commit is contained in:
parent
e4ac19a87a
commit
625f1745dd
|
@ -803,7 +803,8 @@ cleanup:
|
|||
if (def)
|
||||
virFileDeletePid(LXC_STATE_DIR, def->name);
|
||||
lxcControllerCleanupInterfaces(nveths, veths);
|
||||
unlink(sockpath);
|
||||
if (sockpath)
|
||||
unlink(sockpath);
|
||||
VIR_FREE(sockpath);
|
||||
|
||||
return rc;
|
||||
|
|
Loading…
Reference in New Issue