virDomainDiskDefDriverParseXML: Fix usage of virXMLPropUInt

VIR_XML_PROP_NONE has value of 0 so it's pointless to include it in an
binary-or expression.

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
Peter Krempa 2021-05-06 15:08:44 +02:00
parent e9bf68848c
commit 84960ca118

View File

@ -8923,9 +8923,7 @@ virDomainDiskDefDriverParseXML(virDomainDiskDef *def,
VIR_XML_PROP_NONZERO, &def->discard) < 0)
return -1;
if (virXMLPropUInt(cur, "iothread", 10,
VIR_XML_PROP_NONE | VIR_XML_PROP_NONZERO,
&def->iothread) < 0)
if (virXMLPropUInt(cur, "iothread", 10, VIR_XML_PROP_NONZERO, &def->iothread) < 0)
return -1;
if ((tmp = virXMLPropString(cur, "type"))) {