1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-04-01 20:05:19 +00:00

network: Use new util function to check name

New util function virXMLCheckIllegalChars is now used to test if
parsed network contains illegal char '/' in it's name.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
Sławek Kapłoński 2016-10-19 22:57:47 +02:00 committed by Michal Privoznik
parent 7a2216460f
commit e1b8196866

View File

@ -2117,11 +2117,8 @@ virNetworkDefParseXML(xmlXPathContextPtr ctxt)
goto error;
}
if (strchr(def->name, '/')) {
virReportError(VIR_ERR_XML_ERROR,
_("name %s cannot contain '/'"), def->name);
if (virXMLCheckIllegalChars("name", def->name, "/") < 0)
goto error;
}
/* Extract network uuid */
tmp = virXPathString("string(./uuid[1])", ctxt);