mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-04 21:04:57 +00:00
Fix up on commit "Add next pointer to appendAttributeValue"
Remove unrequired nextPtr assignments
This commit is contained in:
parent
66b695f150
commit
92f66bb50e
1 changed files with 1 additions and 4 deletions
|
@ -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 */
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue