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

Function xmlFreeStreamComp

ThirdParty/libxml2/vtklibxml2/pattern.c:1452–1461  ·  view source on GitHub ↗

* xmlFreeStreamComp: * @comp: the compiled pattern for streaming * * Free the compiled pattern for streaming */

Source from the content-addressed store, hash-verified

1450 * Free the compiled pattern for streaming
1451 */
1452static void
1453xmlFreeStreamComp(xmlStreamCompPtr comp) {
1454 if (comp != NULL) {
1455 if (comp->steps != NULL)
1456 xmlFree(comp->steps);
1457 if (comp->dict != NULL)
1458 xmlDictFree(comp->dict);
1459 xmlFree(comp);
1460 }
1461}
1462
1463/**
1464 * xmlStreamCompAddStep:

Callers 3

xmlFreePatternInternalFunction · 0.85
xmlStreamCompileFunction · 0.85
xmlPatternCompileSafeFunction · 0.85

Calls 1

xmlDictFreeFunction · 0.85

Tested by

no test coverage detected