| 1585 | } |
| 1586 | |
| 1587 | static void |
| 1588 | xmlXPathFreeCache(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: |
no test coverage detected