tests: Extract constant "storage" in function accumulate_characters

.. to avoid potential reader confusion about where the input character
data is coming from: variable "storage" says that more clearly
and is consistent with multiple other places in the test suite.
This commit is contained in:
Sebastian Pipping 2024-09-22 00:44:04 +02:00
parent c46543e053
commit cfe35b96ef

View file

@ -1908,7 +1908,8 @@ accumulate_start_element(void *userData, const XML_Char *name,
void XMLCALL
accumulate_characters(void *userData, const XML_Char *s, int len) {
CharData_AppendXMLChars((CharData *)userData, s, len);
CharData *const storage = (CharData *)userData;
CharData_AppendXMLChars(storage, s, len);
}
void XMLCALL