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

Function xmlXPathFreeCache

ThirdParty/libxml2/vtklibxml2/xpath.c:1587–1597  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1585}
1586
1587static void
1588xmlXPathFreeCache(xmlXPathContextCachePtr cache)
1589{
1590 if (cache == NULL)
1591 return;
1592 if (cache->nodesetObjs)
1593 xmlXPathCacheFreeObjectList(cache->nodesetObjs);
1594 if (cache->miscObjs)
1595 xmlXPathCacheFreeObjectList(cache->miscObjs);
1596 xmlFree(cache);
1597}
1598
1599/**
1600 * xmlXPathContextSetCache:

Callers 2

xmlXPathContextSetCacheFunction · 0.85
xmlXPathFreeContextFunction · 0.85

Calls 1

Tested by

no test coverage detected