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

Function xmlRegFreeRange

ThirdParty/libxml2/vtklibxml2/xmlregexp.c:730–738  ·  view source on GitHub ↗

* xmlRegFreeRange: * @range: the regexp range * * Free a regexp range */

Source from the content-addressed store, hash-verified

728 * Free a regexp range
729 */
730static void
731xmlRegFreeRange(xmlRegRangePtr range) {
732 if (range == NULL)
733 return;
734
735 if (range->blockName != NULL)
736 xmlFree(range->blockName);
737 xmlFree(range);
738}
739
740/**
741 * xmlRegCopyRange:

Callers 2

xmlRegCopyRangeFunction · 0.85
xmlRegFreeAtomFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected