MCPcopy Create free account
hub / github.com/Kitware/VTK / xmlFreePatternList

Function xmlFreePatternList

ThirdParty/libxml2/vtklibxml2/pattern.c:268–278  ·  view source on GitHub ↗

* xmlFreePatternList: * @comp: an XSLT comp list * * Free up the memory allocated by all the elements of @comp */

Source from the content-addressed store, hash-verified

266 * Free up the memory allocated by all the elements of @comp
267 */
268void
269xmlFreePatternList(xmlPatternPtr comp) {
270 xmlPatternPtr cur;
271
272 while (comp != NULL) {
273 cur = comp;
274 comp = comp->next;
275 cur->next = NULL;
276 xmlFreePatternInternal(cur);
277 }
278}
279
280/**
281 * xmlNewPatParserContext:

Callers 3

xmlXPathFreeCompExprFunction · 0.85
xmlFreePatternFunction · 0.85

Calls 1

xmlFreePatternInternalFunction · 0.85

Tested by

no test coverage detected