conf: Don't free uninitialized pointer

This causes libvirtd to crash when both <boot dev='...'/> and <boot
order='...'/> are used in one domain XML. Introduced by
5fa3d775a9
This commit is contained in:
Jiri Denemark 2011-11-04 09:25:20 +01:00
parent 5d4b0c4c80
commit 15fd90b641

View File

@ -6430,7 +6430,8 @@ virDomainDefParseBootXML(xmlXPathContextPtr ctxt,
{
xmlNodePtr *nodes = NULL;
int i, n;
char *bootstr, *useserial;
char *bootstr;
char *useserial = NULL;
int ret = -1;
unsigned long deviceBoot, serialPorts;