Fix up on commit "Add next pointer to appendAttributeValue"

Remove unrequired nextPtr assignments
This commit is contained in:
Berkay Eren Ürün 2025-01-15 13:23:34 +01:00
parent 66b695f150
commit 92f66bb50e

View file

@ -6378,7 +6378,7 @@ appendAttributeValue(XML_Parser parser, const ENCODING *enc, XML_Bool isCdata,
} else {
enum XML_Error result;
result = processEntity(parser, entity, XML_FALSE, ENTITY_ATTRIBUTE);
if (nextPtr) {
if ((result == XML_ERROR_NONE) && (nextPtr != NULL)) {
*nextPtr = next;
}
return result;
@ -6402,9 +6402,6 @@ appendAttributeValue(XML_Parser parser, const ENCODING *enc, XML_Bool isCdata,
/* LCOV_EXCL_STOP */
}
ptr = next;
if (nextPtr) {
*nextPtr = next;
}
}
/* not reached */
}