コード例 #1
0
ファイル: cleanup.hpp プロジェクト: gischen/mapnik
inline void run_cleanup()
{
    // only call this once, on exit
    // to make sure valgrind output is clean
    // http://xmlsoft.org/xmlmem.html
    xmlCleanupCharEncodingHandlers();
    xmlCleanupEncodingAliases();
    xmlCleanupGlobals();
    xmlCleanupParser();
    xmlCleanupThreads();
    xmlCleanupInputCallbacks();
    xmlCleanupOutputCallbacks();
    xmlCleanupMemory();

#if defined(HAVE_CAIRO)
    // http://cairographics.org/manual/cairo-Error-handling.html#cairo-debug-reset-static-data
    cairo_debug_reset_static_data();
#endif

    // http://icu-project.org/apiref/icu4c/uclean_8h.html#a93f27d0ddc7c196a1da864763f2d8920
    u_cleanup();

#ifdef MAPNIK_USE_PROJ4
    // http://trac.osgeo.org/proj/ticket/149
 #if PJ_VERSION >= 480
    pj_clear_initcache();
 #endif
    // https://trac.osgeo.org/proj/wiki/ProjAPI#EnvironmentFunctions
    pj_deallocate_grids();
#endif    
}
コード例 #2
0
ファイル: xml.cpp プロジェクト: zhenyouluo/GPL
/**
*关闭并释放xml文档
*/
void gpl::xml::closeXPath()
{
	if (m_xml->resource != NULL)
	{
		xmlXPathFreeObject(m_xml->resource);
		m_xml->resource = NULL;
	}
	if (m_xml->context != NULL)
	{
		xmlXPathFreeContext(m_xml->context);
		m_xml->context = NULL;
	}
	xmlCleanupEncodingAliases();
	if (m_xml->doc != NULL)
		xmlFreeDoc(m_xml->doc);
	xmlCleanupParser();
	m_xml->doc = 0;
}
コード例 #3
0
ファイル: charset.c プロジェクト: frese/mbuni
void charset_shutdown()
{
    xmlCleanupEncodingAliases();
}