valid: Remove id before updating attribute type

This commit is contained in:
Nick Wellnhofer 2024-03-02 18:59:16 +01:00
parent a3e11e3de1
commit f797cdabf5

View File

@ -4244,6 +4244,8 @@ xmlValidateOneAttribute(xmlValidCtxtPtr ctxt, xmlDocPtr doc,
attr->name, elem->name, NULL);
return(0);
}
if (attr->atype == XML_ATTRIBUTE_ID)
xmlRemoveID(doc, attr);
attr->atype = attrDecl->atype;
val = xmlValidateAttributeValueInternal(doc, attrDecl->atype, value);