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

Function xmlCleanupEncodingAliases

ThirdParty/libxml2/vtklibxml2/encoding.c:924–941  ·  view source on GitHub ↗

* xmlCleanupEncodingAliases: * * Unregisters all aliases */

Source from the content-addressed store, hash-verified

922 * Unregisters all aliases
923 */
924void
925xmlCleanupEncodingAliases(void) {
926 int i;
927
928 if (xmlCharEncodingAliases == NULL)
929 return;
930
931 for (i = 0;i < xmlCharEncodingAliasesNb;i++) {
932 if (xmlCharEncodingAliases[i].name != NULL)
933 xmlFree((char *) xmlCharEncodingAliases[i].name);
934 if (xmlCharEncodingAliases[i].alias != NULL)
935 xmlFree((char *) xmlCharEncodingAliases[i].alias);
936 }
937 xmlCharEncodingAliasesNb = 0;
938 xmlCharEncodingAliasesMax = 0;
939 xmlFree(xmlCharEncodingAliases);
940 xmlCharEncodingAliases = NULL;
941}
942
943/**
944 * xmlGetEncodingAlias:

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected